How to pass values from GUI to workspace
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How to pass values from GUI to workspace
0 Commenti
Risposte (2)
Jan
il 4 Dic 2012
To which workspace? Each function has its own one. Do you mean the base-workspace, which is available in the command window? Then:
assignin('base', 'A', 123 + 17)
Please note, that using such remote-creation of variables frequently will make it much harder to debug your program. Imagine you have tweo different GUIs which assign the same variable. Then it is impossible to find the function, which has applied the last changes.
0 Commenti
Vedere anche
Categorie
Scopri di più su Workspace Variables and MAT Files in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!