Use UICONTROL for listbox

8 次查看(过去 30 天)
I need to use uicontrol to create a listbox. Instead of changing the variables each time the script is executed, I want to be able to change it on a GUI screen. So my list is composed of 5 variables:
mass
velocity
time
acceleration
speed
and these 5 variables have data.
Thanks,
Amanda

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2013-5-29
编辑:Azzi Abdelmalek 2013-5-29
yourcell={'mass','velocity','time','acceleration','speed'}
uicontrol('Style', 'listbox','Position',[100 100 200 200],...
'string',yourcell,'Callback',@yourfunction)
%---------------add your function---------------------
function yourfunction(hObj,event)
v=get(hObj,'value')
%do
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by