How do I let a user choose what variable they want to assign a value to?
15 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Edward Tomanek
am 27 Dez. 2018
Kommentiert: Stephen23
am 27 Dez. 2018
I am making a program where I would like it to display a list of variable names (already created inside the program) and then let the user decide which one variable they want to assign a value to (either by typing the name of the variable or by typing in some pre-set command) and then input the value to be assigned to that variable.
(To give some background this is for a unit converter program where the user would, for instance, type "feet" and then e.g. "3" and it would return what 3 feet is in metres, inches, miles, yards etc; or they could type "metres" and then e.g. "5" and it would return this value in feed, inches etc).
1 Kommentar
Stephen23
am 27 Dez. 2018
Letting the user dynamically select a variable name would not be a good approach:
There are plenty of much better approaches to writing a unit converter, just search File Exchange:
Akzeptierte Antwort
Image Analyst
am 27 Dez. 2018
Bearbeitet: Image Analyst
am 27 Dez. 2018
I would put those variable names into a drop down list (what Mathworks calls a popup).
Then the user can select one, and in the popup callback, you can execute the proper code for that selection using a switch or if/else block.
Or perhaps less user friendly, you could use the menu() function and execute the appropriate code for whatever button number they clicked on.
0 Kommentare
Weitere Antworten (1)
madhan ravi
am 27 Dez. 2018
Bearbeitet: madhan ravi
am 27 Dez. 2018
There's already one requires symbolic math toolbox :
0 Kommentare
Siehe auch
Kategorien
Mehr zu Whos finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!