Removing "VarName" row when exporting table to csv
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
UserCubed
am 29 Mai 2018
Kommentiert: Ameer Hamza
am 29 Mai 2018
I'm trying to export a table to csv, and no matter what I do row 1 always ends up being VarName1, VarName2, etc.
Is it possible to not have this row?
2 Kommentare
Akzeptierte Antwort
Ameer Hamza
am 29 Mai 2018
Use the following option to disable the variable names in the first row
writetable(table, 'test.csv', 'WriteVariableNames', 0)
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Tables 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!