Within a single popup dialog box, how to request multiple user inputs to define variables?
Ältere Kommentare anzeigen
I have four separate boxes popup for a user to define variables r, s, n, and d:
r = str2double (inputdlg ('Input row number.')); % Row number.
s = str2double (inputdlg ('Input section number.')); % Section number.
n = str2double (inputdlg ('Input quantity of images.')); % Quantity of images.
d = str2double (inputdlg ('Input distance from vine [ft].')); % Camera distance from vine [ft].
Is there a way for the user to define these variables using one popup box? Thank you!
Akzeptierte Antwort
Weitere Antworten (1)
Walter Roberson
am 31 Jan. 2014
0 Stimmen
Yes, inputdlg() accepts a cell array of strings for the several prompts.
Kategorien
Mehr zu Update figure-Based Apps finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!