[num txt raw] = xlsread('stuents_information.xls');
时间: 2024-05-22 16:11:54 浏览: 85
将txt文件读取为矩阵格式.rar_UTS_matlab 读取txt
5星 · 资源好评率100%
这段代码使用 MATLAB 中的 `xlsread` 函数读取名为 `students_information.xls` 的 Excel 文件,并将数据存储在 `num`、`txt` 和 `raw` 三个变量中。
- `num` 变量包含数值数据,例如成绩等。
- `txt` 变量包含文本数据,例如学生姓名等。
- `raw` 变量是原始的 Excel 数据,包含所有的数据类型。
阅读全文