How to vary the number of fields in inputdlg dynamically?

2 vues (au cours des 30 derniers jours)
Sarath S
Sarath S le 6 Juin 2020
Commenté : Ameer Hamza le 6 Juin 2020
Im trying to get values for n number of fields where n is specified by the user previously.
For example.
After this, depending upon the value user enters, lets say 5, I need another dialog box to gather 5 values.
The next dialog box should look soemthing like this:
Enter thickness of growth
Zone 1:
Zone 2:
Zone 3:
Zone 4:
Zone 5:

Réponse acceptée

Ameer Hamza
Ameer Hamza le 6 Juin 2020
Something like this
n = inputdlg('Number of Zones');
n = str2double(n{1});
prompts = compose('Zone %d', 1:n);
y = inputdlg(prompts)
  2 commentaires
Sarath S
Sarath S le 6 Juin 2020
Thanks a lot!
Ameer Hamza
Ameer Hamza le 6 Juin 2020
I am glad to be of help!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Startup and Shutdown dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by