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!