How can I have a user select multiple options and quantity of each?

19 visualizaciones (últimos 30 días)
I am trying to write a function that has the user select which options they want and how many. So either in a display window or the command window, it would show something like:
Tanks: ____
Infantry: ____
Artillery: ____
Fighters: ____
Then the user could input numbers into the window which would result in an array [1, 10, 0, 2] indicating 1 tank, 10 infantry, 0 artillery, and 2 fighters.
I have tried uicontrol and although I didn't get it to work, I may be using it wrong. A display window like "menu" would be ideal, but the command window works just as well. I would supply my script that I currently have, but I really have nothing so far. Any insight is appreciated.

Respuesta aceptada

Kevin Holly
Kevin Holly el 27 de Jul. de 2022
You can use inputdlg.
If you want to make something more sophisticated, you could create an app with App Designer.
  3 comentarios
Kevin Holly
Kevin Holly el 27 de Jul. de 2022
You can convert it to a numeric array as such:
x = {'2';'0';'3';'0'}
x = 4×1 cell array
{'2'} {'0'} {'3'} {'0'}
str2double(x)
ans = 4×1
2 0 3 0

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by