How do I change the header name of csv files?
조회 수: 8 (최근 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!