adding string to MATLAB workspace

18 vues (au cours des 30 derniers jours)
Samer Husam
Samer Husam le 21 Mai 2012
Hi, is there is a way I can add sting to my workspace ? and how can I read the workspace value ? in other hand, how to display this value in GUI static text ???
thanks a lot guys :)

Réponse acceptée

Daniel Shub
Daniel Shub le 21 Mai 2012
While you can do these things. Please don't.
To assign a string to your workspace:
assignin('base', 'mystr', 'Hello World')
To read the workspace value
evalin('base', 'mystr')
To set the value to a GUI text box with handle h
set(h, 'String', evalin('base', 'mystr'))
Again, please don't do this.

Plus de réponses (0)

Catégories

En savoir plus sur Variables dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by