how to put heading for columns of matrix?
조회 수: 14 (최근 30일)
이전 댓글 표시
I want to put a heading for each column of a output matrix like
I J K
2 3 4
4 5 4
3 8 7
댓글 수: 0
답변 (3개)
Azzi Abdelmalek
2013년 10월 4일
h={'I' 'J' 'K'}
A= [2 3 4;4 5 4;3 8 7]
M=[h;num2cell(A)]
댓글 수: 5
hadiqa khan
2018년 4월 2일
the table window appears with the name figure how to name this table created by code provided by you??
Jonathan Sullivan
2013년 10월 4일
If you have MATLAB 2013b, I would look into using tables
doc table
댓글 수: 2
Jonathan Sullivan
2013년 10월 7일
No but earlier versions of MATLAB have datasets in the statistics toolbox. They provide similar functionality.
doc dataset
참고 항목
카테고리
Help Center 및 File Exchange에서 LaTeX에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!