I send a data (2 numeric columns, changeable number rows) to a uitable and I wish that the 3rd column will be logical so I can select data from it.
I already declare the 3rd column in GUIDE uitable to be editable but I get this error:
"Warning: Table data is not editable at this location."
I tried many things but still the error reoccurs. How can it be solved?
[mcolumn,ncolumn] = size(myInfo);
fColumn = logical(repmat(flase,[mcolumn,1]))
Ctemp = [myInfo, fColumn]
cellMyInfo = num2cell(myInfo);
columnform = {'numeric','numeric','logical'};
set(handles.outputTable,'data',cellMyInfo);
set(handles.outputTable, 'ColumnFormat', columnform);
set(handles.outputTable, 'ColumnEditable', [false, false, true]);

2 Kommentare

Walter Roberson
Walter Roberson am 24 Dez. 2018
flase ?? (In you repmat)
hsi
hsi am 24 Dez. 2018
syntex error. Thanks

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

Walter Roberson
Walter Roberson am 24 Dez. 2018

0 Stimmen

[mcolumn,ncolumn] = size(myInfo);
fColumn = logical(repmat(false,[mcolumn,1]))
cellMyInfo = [num2cell(myInfo), num2cell(fColumn)];
columnform = {'numeric','numeric','logical'};
set(handles.outputTable, 'data', cellMyInfo);
set(handles.outputTable, 'ColumnFormat', columnform);
set(handles.outputTable, 'ColumnEditable', [false, false, true]);

Weitere Antworten (0)

Kategorien

Mehr zu Develop Apps Using App Designer finden Sie in Hilfe-Center und File Exchange

Gefragt:

hsi
am 24 Dez. 2018

Kommentiert:

hsi
am 24 Dez. 2018

Community Treasure Hunt

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

Start Hunting!

Translated by