📜  如何在 matlab 中读取 excel 文件 - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:22.440000             🧑  作者: Mango

代码示例1
T = readtable('Filename.xlsx', 'Sheet',1, 'Range','B1:F53');

For reading data from Filename.xlsx, Sheet number 1 
from B1 cell through F53
It gives back a matrix that you can read in matlab