Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从 Matlab 中的 Excel 文件单元格中读取特定字符。我做了以下事情: [num2,A] = xlsread( xlsfile, 2 );
其中 A = 'r 1.0'
但是 A 的格式与“字符串”类型不匹配,所以我不能使用 Maltab 的字符串函数继续我的工作。
那么,是否有可能将我从 excel 单元格中读取的内容转换为 Matlab 中的字符串类型?
非常感谢,贝扎德
A 是一个字符串元胞数组,因此您需要使用以下命令访问其内容{ }:
{ }
B = A{1} whos B