MATLAB: Is GUIDE not allowing me to have one (1) column and three (3) rows in the table? It seems as if the default table is 4 x 2

guidematlab gui

Is there away i can get a 3×1 table
thanks in advance,
Cordelle

Best Answer

In the table's createFcn add the following line:
set(handles.table1,'Data',cell(3,1));
Where table1 is the 'Tag' of your table.