MATLAB: How to write and get data from an existed uitable in the figure of matlab R2014a

gui uitable

I draw a GUI, in which a 6×3 uitable exists. plan to run the GUI and write data in the table and then push a button to get the data, but have got no idea to realise it .

Best Answer

get(TheHandleOfTheTable, 'data')
and
set(TheHandleOfTheTable, 'data', ACellArrayOfValues)
Related Question