我试图在循环中使用xlswrite将结果放在每次迭代中
我的功能就像这样
xlswrite('results',results(1,i).A,'results',data);
我收到以下错误,
Error using xlswrite (line 187)
An error occurred on data export in CSV format.
Error in myalgorithm (line 178)
xlswrite('results',results(1,i).A,'results',data);
Caused by:
Error using dlmwrite (line 112)
The input cell array cannot be converted to a matrix.
我正在使用Matlab 2015b,而且我正在使用mac 我也尝试使用csvwrite代替xlswrite,但没有成功。是否有人可以帮助我?