【发布时间】:2016-12-19 22:12:44
【问题描述】:
matlab (2015b) 在我的新笔记本 ThinkPad 功能 xlsread/xlswrite 不起作用
对于每一个存在的excel文件,xlsread不加载数据 xlswrite 也不适用于每条路径 错误使用 xlsread (line251)
catch exception
if isempty(exception.identifier)
exception = MException('MATLAB:xlsreadold:FormatError','%s', exception.message);
end
throw(exception);
导入数据的方法也不适用于excel文件。
【问题讨论】:
-
欢迎来到 SO。请向我们展示您的一些代码(测试数据总是很有帮助的)。否则很难发现问题。
-
stackoverflow.com/q/35699929/6064915.the 类似问题.values = {1, 2, 3 ; 4, 5, 'x' ; 7, 8, 9};标头 = {'First','Second','Third'}; xlswrite('myExample.xlsx',[headers; values]);