Convert table sequence to csv
Mostrar comentarios más antiguos
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 comentarios
Dyuman Joshi
el 14 de Sept. de 2021
Try this
FileData = load('FileName.mat');
csvwrite('FileName.csv', FileData.M);
christophe blain
el 15 de Sept. de 2021
Murugan C
el 15 de Sept. de 2021
try this
csvwrite('FileName.csv', seqTable.sensor1);
Dyuman Joshi
el 15 de Sept. de 2021
seqTable = load('matlab.mat');
csvwrite('test.csv', seqTable.M);
Respuestas (1)
Cris LaPierre
el 15 de Sept. de 2021
seqTable = load('matlab.mat');
writetable(seqTable,'test.csv');
1 comentario
christophe blain
el 16 de Sept. de 2021
Categorías
Más información sobre Convert Image Type en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!