how to add rownames and column names for mat file
조회 수: 2 (최근 30일)
이전 댓글 표시
i have some matfiles and i need to assign row names to all the rows of mat file
댓글 수: 0
답변 (1개)
Image Analyst
2018년 9월 16일
A mat file does not have rows. You can save an additional variable in your mat file if you want though. Just list them all
save('my variables.mat', 'var1', 'rowHeadings', 'fileNames', 'dataTable');
or whatever. Adapt as needed.
참고 항목
카테고리
Help Center 및 File Exchange에서 Structures에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!