Convert table sequence to csv
显示 更早的评论
Hi every one,
I want to convert table sequence to csv file.
I use to write: load('matlab.mat');
and after : csvwrite('matlab.csv', seqTable);
And I have this error:
Check for incorrect argument data type or missing argument in call to function 'real'.
Error in csvwrite (line 47)
throw(e)

How I can do to convert it in csv file?
Many thanks for your help :)
christophe
4 个评论
Dyuman Joshi
2021-9-14
Try this
FileData = load('FileName.mat');
csvwrite('FileName.csv', FileData.M);
christophe blain
2021-9-15
Murugan C
2021-9-15
try this
csvwrite('FileName.csv', seqTable.sensor1);
Dyuman Joshi
2021-9-15
seqTable = load('matlab.mat');
csvwrite('test.csv', seqTable.M);
回答(1 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Convert Image Type 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!