matlab读取excal中的字符串
时间: 2024-05-02 15:20:33 浏览: 66
matlab 字符串识别
5星 · 资源好评率100%
可以使用xlsread函数读取Excel中的数据,其中第一行为表头,后面的行为数据。可以使用以下语句读取字符串数据:
```matlab
[~, ~, raw] = xlsread('filename.xlsx'); % 读取数据
strings = raw(2:end, column_number); % 提取指定列的字符串数据,其中column_number为字符串所在列的编号
```
其中'filename.xlsx'为Excel文件名,column_number为字符串所在列的编号,从1开始计数。
阅读全文