Info
此问题已关闭。 请重新打开它进行编辑或回答。
Ho to reduce the table to 1dim?
1 次查看(过去 30 天)
显示 更早的评论
I use the GUIDE option and placed a table.
The table size is 4×6.
I want to have it 1×6 -> I tried to delete the extra rows with no success. It keep on returning them when I press Apply/OK
回答(1 个)
Sean de Wolski
2013-2-13
A uitable's size is determined by the size of its 'Data' property. So change that:
h = uitable('Data',rand(4,6));
%%To Reduce it:
set(h,'Data',1:6)
7 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!