Convert table sequence to csv

4 views (last 30 days)
christophe blain
christophe blain on 13 Sep 2021
Commented: christophe blain on 16 Sep 2021
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 Comments
Murugan C
Murugan C on 15 Sep 2021
try this
csvwrite('FileName.csv', seqTable.sensor1);
Dyuman Joshi
Dyuman Joshi on 15 Sep 2021
Hello Christopher, try what @Murugan C has suggested or try this -
seqTable = load('matlab.mat');
csvwrite('test.csv', seqTable.M);

Sign in to comment.

Answers (1)

Cris LaPierre
Cris LaPierre on 15 Sep 2021
Have you tried writetable?
seqTable = load('matlab.mat');
writetable(seqTable,'test.csv');

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!