/
GUIs in AppDesigner
GUIs in AppDesigner
Subpages
https://www.mathworks.com/matlabcentral/answers/376091-index-of-the-items-in-a-listbox
CSPM has function listbox_index
index = listbox_index( hbox )
based on the following
listitems = {'data1', 'data2', 'vector1', 'vector2', 'vector3', 'emc'};
hfig = uifigure;
hbox = uilistbox(hfig, 'Items', listitems, 'Multiselect', 'on');
hbox.Value = {'data1', 'vector1', 'vector2', 'emc'}; %simulate user selection
%get index of selected values
[~, index] = ismember(hbox.Value, hbox.Items)
, multiple selections available,
Related content
cspm_local
cspm_local
More like this
cspm_basic stats
cspm_basic stats
More like this
Sets (cspm_analsys_configsets)
Sets (cspm_analsys_configsets)
More like this
Add a new subject to CSPM
Add a new subject to CSPM
More like this
Structure of a Set
Structure of a Set
More like this
cspm_subjects
cspm_subjects
More like this