Filter löschen
Filter löschen

Setting numeric values in Pop-up Menu in Matlab Guide

2 Ansichten (letzte 30 Tage)
pavikirthi
pavikirthi am 28 Okt. 2015
Kommentiert: pavikirthi am 28 Okt. 2015
How to set numeric values from 1 to 10 in Pop-up menu and how to use this value from Pop-up Menu to Push Button when selected in Matlab Guide?

Akzeptierte Antwort

Image Analyst
Image Analyst am 28 Okt. 2015
To load the popup with numbers:
listItems = cell(10,1);
for k = 1 : 10
listItems{k} = num2str(k);
end
set(handles.popup1, 'String', listItems);
To get the index of the selected item:
get(handles.popup1, 'Value');

Weitere Antworten (0)

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by