Info
この質問は閉じられています。 編集または回答するには再度開いてください。
set 2 data in uitable
1 回表示 (過去 30 日間)
古いコメントを表示
how to set 2 data in 1 table at same time, this my code for show 1 data
data_plat = load('Data_Plat.mat');
Database_All = data_plat.Database_All;
data2 = table2cell(Database_All(strcmpi(Database_All.Plat, 'DP4308CJ'), {'Plat', 'Nama', 'Jurusan', 'Status'}));
set(handles.uitable1, 'Data', data2);
i need to show 2 or more data, for example data plate DP4308CJ and DD57NR so i type this code but get error
data2 = table2cell(Database_All(strcmpi(Database_All.Plat, 'DP4308CJ','DD57NR'), {'Plat', 'Nama', 'Jurusan', 'Status'}));
how to fix that?
0 件のコメント
回答 (0 件)
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!