save a cell matrix as csv format
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Dear all,
I have a cell matrix
A={ 'name' 'area' 'values'
'A1' 'wexc' [ 1.1880]
'A2' 'dsfdg' [ 1.1505]
'A3' 'dfvsd' [ NaN]
'A4' 'sdw' [ 1.2081]};
and I want to save it as an csv format
could you please verify that this is the correct command for doing this?
csvwrite('YourNewFile.csv', A);
thanks
0 Kommentare
Antworten (2)
Azzi Abdelmalek
am 27 Feb. 2013
Bearbeitet: Azzi Abdelmalek
am 27 Feb. 2013
csvwrite does not accept cell arrays
2 Kommentare
Azzi Abdelmalek
am 27 Feb. 2013
xlswrite('YourNewFile.xls', A); % save it as an excell file
In Excell you can save your file as a csv format
Shashank Prasanna
am 27 Feb. 2013
The following solutions page answers this exact questions:
0 Kommentare
Siehe auch
Kategorien
Mehr zu Spreadsheets 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!