Appending data to GUI table

2 views (last 30 days)
I have program to display data in a uitable
data_plat = load('Data_Plat.mat');
Database_All = data_plat.Database_All;
data2 = table2cell(Database_All(strcmpi(Database_All.Plat, final_output), ...
{'Plat', 'Nama', 'Jurusan', 'Status'}));
handles.uitable1.Data = union(handles.uitable1.Data, data2);
this code just display data in 1 column(downward), how to make it show in a row every data? see the picture

Accepted Answer

Walter Roberson
Walter Roberson on 7 Sep 2017
You need to union by 'rows'
  2 Comments
Yusran Said
Yusran Said on 7 Sep 2017
Edited: Yusran Said on 8 Sep 2017
how to do that? i try some code, add 'row', but get erorr
Walter Roberson
Walter Roberson on 8 Sep 2017
handles.uitable1.Data = union(handles.uitable1.Data, data2, 'rows');

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!