Matlab app designer can't go further than the first dropdown value
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
farzad
am 24 Mär. 2020
Kommentiert: Sean de Wolski
am 16 Apr. 2020
Hi All
I have made an app with a dropdown and a push button. I should choose a value from dropdown and based on that the pushbutton will run a certain code pasted under it. let's say the dropdown values are 1,2,3
the problem is :
the app works fine If I choose the first value on dropdown menu and use the
if app.ConfigDropDown.Value == '1'
elsif app.ConfigDropDown.Value == '2'
elsif app.ConfigDropDown.Value == '3'
end
only if I choose the 1 , the code could run. otherwise it will give this error :
Matrix dimensions must agree.
Error in app/ExecuteButtonPushed (line 40)
if app.ConfigDropDown.Value == '2'
Error using matlab.ui.control.internal.controller.ComponentController/executeUserCallback (line 309)
Error while evaluating Button PrivateButtonPushedFcn.
0 Kommentare
Akzeptierte Antwort
Sean de Wolski
am 24 Mär. 2020
Bearbeitet: Sean de Wolski
am 24 Mär. 2020
if app.ConfigDropDown.Value == '1'
elseif app.ConfigDropDown.Value == '2'
elseif app.ConfigDropDown.Value == '3'
end
You're missing some e's.
4 Kommentare
Sean de Wolski
am 16 Apr. 2020
You can see the value in the command prompt. Once you're stopped, type the value at the command prompt.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!