matlab读取excel数据的代码
时间: 2023-06-04 16:08:48 浏览: 30
plot_excel数据图像_matlab_as65u_naturalu2u_数据读取_
使用 Matlab 读取 Excel 数据的代码如下:
```
% 使用 xlsread 函数读取 Excel 文件中的数据
filename = 'example.xlsx';
sheet = 1;
range = 'A1:C3';
data = xlsread(filename, sheet, range);
% 使用 readtable 函数读取 Excel 文件中的数据
data = readtable(filename, 'Sheet', sheet, 'Range', range);
```
请注意,需要安装 Matlab 中的工具箱,以使用上述代码。
阅读全文