How do I correlate a scalar value to a dropdown menu item?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Mariano Longo
il 25 Mar 2021
Commentato: Mariano Longo
il 27 Mar 2021
I am trying to code a takeoff performance calculator tool. The user needs to select the type of engine installed on the aircraft (IAE or CFM in this case) so that the app can run the code with the appropriate max thrust. I have therefore set up the app to do the following:
However, this yields the following result:
which means that now only "IAE" has an ItemData value, which is "1,2". I thought I could put a temporary fix to this by having the user input "1" from the dropdown menu as the IAE engine type and "2" as the CFM engine type, then figure out later what is going on. However, I quickly noticed that in this line of code here, the "If" condition is never met, because further down the code, "Thrust" simply cannot be found. What am I doing wrong?
if app.EnginesDropDown.Value==1
Thrust=110310*(exp((-10^(-4)*DA)))
elseif app.EnginesDropDown.Value==2
Thrust=124511*(exp((-10^(-4)*DA)));
end
0 Commenti
Risposta accettata
Mario Malic
il 27 Mar 2021
Hello,
Leave the Value field empty, it will be the first value of Items. For ItemsData, use a new row to define ItemsData for each entry of Items.
When you click on ItemsData, it should look like this
1
2
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!