Using Workspace variables in a GUI matlab

I have a workspace called *finalnet*. Inside the workspace i have a neural network called *net*. and I want to use the network in one of the functions in my GUI.
Is there a way to do that?
I tried to use *evalin* function : `network = evalin('finalnet','net')`
but i get this error:
> Error using evalin Unknown command option.

 Accepted Answer

doc evalin
The first input to evalin should be "Where should it eval in?"
I don't see how you can define a workspace. It'll either be in the 'base' workspace or the 'caller' workspace. Otherwise, you'll need to re-architect it so that it is.
network = evalin('base','net');

More Answers (0)

Categories

Find more on Deep Learning Toolbox in Help Center and File Exchange

Asked:

on 29 Jan 2015

Commented:

on 30 Jan 2015

Community Treasure Hunt

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

Start Hunting!