Add new rows to Table (GUI uitable)
78 views (last 30 days)
Show older comments
Hey guys! After some research, I still can't find the solution for my problem. I have a table that it's filled with info from user, when a button is pushed. The idea is that once new information is inserted and the "add" button pushed, a new row is created on the table and the info copied there, without deleting/overwrite previous data.
Does any of you have a suggestion?? Your help is very much appreciated!
Thanks! BS.
Accepted Answer
Tom
on 4 Jul 2013
%hTable: handle to the table
%newRow : the row of data you want to add to the table.
oldData = get(hTable,'Data');
newData = [oldData; newRow];
set(hTable,'Data',newData)
More Answers (0)
See Also
Categories
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!