replicate data in table

6 visualizaciones (últimos 30 días)
Yusran Said
Yusran Said el 12 de Sept. de 2017
Comentada: Walter Roberson el 12 de Sept. de 2017
hello guys, i have code to show data in gui table
%%Database
data_plat = load('Data_PlatQ.mat');
Database_All = data_plat.Database_All;
data2 = table2cell(Database_All(strcmpi(Database_All.Plat, final_output), ...
{'Plat', 'Nama', 'Jurusan', 'Status'}));
data2 = [get(handles.uitable1, 'Data'); data2];
set(handles.uitable1, 'Data', data2);
when i run this code, it always replicate data in table, final_output is a number computed by the program which always changes because the program is processing video. i alrdy try unique and union function but still not work. how can i solve that?? any suggestion

Respuesta aceptada

Walter Roberson
Walter Roberson el 12 de Sept. de 2017
set(handles.uitable1, 'Data', unique(data2, 'rows'));
  5 comentarios
Yusran Said
Yusran Said el 12 de Sept. de 2017
data property of uitable1 is default,
keep current data value : To load data from a file, or to create data manually, first store the data in a workspace variable, then select the variable from the table below
Walter Roberson
Walter Roberson el 12 de Sept. de 2017
Put in a breakpoint at the line
data2 = [get(handles.uitable1, 'Data'); data2];
and execute. When it stops, query
size(data2)
d1 = get(handles.uitable1, 'Data');
size(d1), class(d1)

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by