gui and work space data sharing

15 views (last 30 days)
how to attache data from work space to gui
  2 Comments
mohamed  al-asklany
mohamed al-asklany on 1 Jul 2012
in simulinke model there is a "to workspace " assume its var is "sout" that i want this var "sout" identified by my gui program

Sign in to comment.

Accepted Answer

Luffy
Luffy on 6 Jul 2012
If you want to access data that is in base workspace in your gui functions,
use
v = evalin('base','name of variable u want to access');
% the variable's data is now stored in v.
If u want to save data of ur gui work space to base,use
assignin('base','name of variable u want to save','value of variable');

More Answers (1)

Image Analyst
Image Analyst on 1 Jul 2012

Categories

Find more on Parallel Computing in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!