Is it possible to collect input parameters with a GUI window?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I need a checkbox, a string input, a selection from a list, a folder selection, and a done button. Are there any flexible methode to do this?
0 Kommentare
Antworten (2)
Walter Roberson
am 29 Dez. 2017
That all is too complicated together for MATLAB to offer a single "simple" method. You can build a UI for that: create a figure and put the various controls and callbacks inside it.
Jan
am 29 Dez. 2017
You can create such a GUI using GUIDE or programmatically. For the latter see https://www.mathworks.com/matlabcentral/fileexchange/24861-41-complete-gui-examples. Further examples from the FileExchange:
- https://www.mathworks.com/matlabcentral/fileexchange/26312-settings-dialog
- https://www.mathworks.com/matlabcentral/fileexchange/25862-inputsdlg--enhanced-input-dialog-box
- https://www.mathworks.com/matlabcentral/fileexchange/26817-simple-settings-dialog
- https://www.mathworks.com/matlabcentral/fileexchange/14583-uicomponent-expands-uicontrol-to-all-java-classes
- etc. Search by your own also...
0 Kommentare
Siehe auch
Kategorien
Mehr zu Migrate GUIDE Apps 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!