Why is GUIDE not allowing me to have one (1) column and three (3) rows in my table? It seems as if the default table is 4 x 2
1 次查看(过去 30 天)
显示 更早的评论
Is there away i can get a 3x1 table
thanks in advance,
Cordelle
0 个评论
采纳的回答
Sean de Wolski
2013-6-25
In the table's createFcn add the following line:
set(handles.table1,'Data',cell(3,1));
Where table1 is the 'Tag' of your table.
12 个评论
Sean de Wolski
2013-6-25
If you want default contents, instead of setting an empty cell, set it to some default values.
更多回答(2 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Migrate GUIDE Apps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!