我用过:
load('feature_table.mat');
csvwrite('ft.csv',feature_table);
但它显示了跟随错误。我怎么才能解决这个问题?
Check for missing argument or incorrect argument data type in call to
function 'real'.
Error in csvwrite (line 47)
throw(e)
有关该文件的更多信息: feature_table是一个3240x26表
发布于 2020-11-25 11:03:06
我不知道问题是什么,但是Matlab建议使用"writematrix“函数。请参阅https://se.mathworks.com/help/matlab/ref/writematrix.html
您还可以尝试将表保存为.txt文件,这是Matlab网站在csvwrite函数(https://se.mathworks.com/help/matlab/ref/csvwrite.html)示例中使用的输出。
https://stackoverflow.com/questions/65002914
复制相似问题