How do I change the header name of csv files?
10 ビュー (過去 30 日間)
古いコメントを表示
Here are the screenshots of my code and the ouput too
採用された回答
Adam Danz
2020 年 4 月 14 日
編集済み: Adam Danz
2020 年 4 月 15 日
When you write the csv file, there are no headers using the syntax you shared. The Var1 Var2.... headers appear when you read the data back into Matlab.
T = array2table([p(:),d(:),e(:)], 'VariableNames', {'p','d','e'})
% Replace these with meaningful variable names ^^^^^^^^^^^^^
writetable(T, 'speed.csv')
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Standard File Formats についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!