How to create variable name for .CSV file in matlab?
조회 수: 5 (최근 30일)
이전 댓글 표시
Hi,
I have CSV file as below
I want to create names for VarName upto end of the matrix. I have to write the code for changing the VarNames automatically. I need the output as below. Please let me know if anyone knows the ans.
Thank you in advance.
댓글 수: 3
답변 (1개)
Arunkumar M
2018년 11월 28일
Hope you have already imported data into workspace as table. Assuming table name is Reducedfeatures
% for defining name for all columns at once
Reducedfeatures.Properties.VariableNames = {'C1','C2',.......}
% for defining specific column names, example: first and second column
Reducedfeatures.Properties.VariableNames([1:2]) = {'C1','C2'}
댓글 수: 4
Claudio Ignacio Fernandez
2020년 7월 28일
Hello
I'm following your example but I'm getting this message
Unable to perform assignment
because dot indexing is not
supported for variables of this
type.
Jan
2020년 7월 29일
@Claudio: Please post your code. How is your variable called "Reducedfeatures" here defined in your case?
참고 항목
카테고리
Help Center 및 File Exchange에서 Whos에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!