How do I correlate a scalar value to a dropdown menu item?

2 visualizaciones (últimos 30 días)
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

Respuesta aceptada

Mario Malic
Mario Malic el 27 de Mzo. de 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
  1 comentario
Mariano Longo
Mariano Longo el 27 de Mzo. de 2021
Thanks for your help, I tried that, didn't work, however installing the newest version of Matlab fixed it

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by