How do I change the header name of csv files?

10 ビュー (過去 30 日間)
dunphy
dunphy 2020 年 4 月 14 日
コメント済み: Adam Danz 2020 年 4 月 15 日
Here are the screenshots of my code and the ouput too
  4 件のコメント
dunphy
dunphy 2020 年 4 月 14 日
That is my full code. When i run it, there will always be a speed.csv file forming however the headings remain "Var1" "Var 2". How do I change it permanently?
dunphy
dunphy 2020 年 4 月 14 日
I'm using R2019b

サインインしてコメントする。

採用された回答

Adam Danz
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.
I suggest you convert your matrix into a table and use writetable() instead of csvwrite.
T = array2table([p(:),d(:),e(:)], 'VariableNames', {'p','d','e'})
% Replace these with meaningful variable names ^^^^^^^^^^^^^
writetable(T, 'speed.csv')
  2 件のコメント
dunphy
dunphy 2020 年 4 月 15 日
It worked, ty so much!
Adam Danz
Adam Danz 2020 年 4 月 15 日
Glad I could help!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStandard File Formats についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by