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!