How do I change the header name of csv files?

조회 수: 8 (최근 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 CenterFile Exchange에서 Standard File Formats에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by