直接用load就可以了,最简单的s=load("文件名"),s是一个矩阵,其任意子结构都可以取到。在matlab中输入 help load,就能看到其使用帮助。S = LOAD(...) returns the contents of FILENAME in variable S. If FILENAME is a MAT file, S is a struct containing fields matching the variab...
读取指定sheet中的数据 假如我们想读取第二个sheet中的数据,这里请注意:matlab读取excel中的数据是按照sheet在excel中的排放顺序来的,sheet3现在排在第二位,我们输入命令[num]=xlsread('example',2),回车 结果如下:读取指定单元格中的数据 以sheet2中的数据为例 假设我们读取a3-d7之间的数据,...