Filter löschen
Filter löschen

Save data to .mat file

7 Ansichten (letzte 30 Tage)
Hazel Sialongo
Hazel Sialongo am 27 Sep. 2016
Kommentiert: Hazel Sialongo am 27 Sep. 2016
How can I save data to a mat file? I just want to create 10 column mat file. I also want column headings in the first row of each column.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 27 Sep. 2016
Once you had created the table described there, you can save() it to a .mat file.
Are you trying to create a text output file or a binary output file?
If you are trying to save to a text file with column headers, then really the best way is to fopen(), fprintf() the headers, fprintf() the data, and then fclose().
If you are trying to save to a text file with column headers, and you really feel a need to use save, then use fopen(), fprintf() the headers, fclose(). Then use
save TheMatFileName -ascii -tabs -append TheVariableName
If you are trying to save in binary form and you need column headers then you need to use a table() object (described in the link above), or you need to use a dataset() object from the Statistics toolbox. Those are the only kinds of rectangular arrays that support column headers.
  1 Kommentar
Hazel Sialongo
Hazel Sialongo am 27 Sep. 2016
I've just got an answer to this. But anyway, thank you.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Low-Level File I/O finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by