MATLAB读取excel中的数据
读取sheet1中的数据
读取指定sheet中的数据
如果想读取excel中的第二个sheet中的数据,可以输入下面命令
[num]=xlsread(‘C:\Users\Administrator\Desktop\test\a.xls‘,2)
读取指定单元格中的数据
[num]=xlsread(‘C:\Users\Administrator\Desktop\test\a.xls‘,2,‘A2:C5‘)
参考网址:https://blog.csdn.net/qq_38826019/article/details/81184811
MATLAB读取excel文件中的数据
原文:https://www.cnblogs.com/chuqianyu/p/13396399.html