MATLAB: Creating an empty table matlab GUI

guiMATLABmatlab guitable

The default size of a table on matlab appears to be a 4×2. However I created a variable A = ones(3,1) and chose the data on the table to reflect this variable, thus the table size changed to a 3×1 (which is what I would like it to be). The problem is that now the table is filled with 1's and I would like the table to be empty at the start of the GUI. Can anyone help?

Best Answer

A=cell(3,1) will create an empty table.