creating a table from an array or matrix
조회 수: 6 (최근 30일)
이전 댓글 표시
In the application i need, I want be able to display a table. It has 8 columns, 40 rows, and want to be able for it to display cleanly and have headings for each column.
as well if possible, after i would like to be able to display only the top 5 rows along with headings of this table.
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2013년 2월 27일
편집: Azzi Abdelmalek
2013년 2월 27일
Use
uitable
Example
data=rand(5,2);
colnam ={'c1', 'c2'},
t=uitable('data',data,'columnname',colnam)
Fore more details
doc uitable
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Operators and Elementary Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!