| MATLAB Function Reference | ![]() |
evalin(ws, expression)
[a1, a2, a3, ...] = evalin(ws, expression)
evalin(ws, expression) executes expression, a string containing any valid MATLAB expression, in the context of the workspace ws. ws can have a value of 'base' or 'caller' to denote the MATLAB base workspace or the workspace of the caller function. You can construct expression by concatenating substrings and variables inside square brackets:
expression = [string1, int2str(var), string2,...]
[a1, a2, a3, ...] = evalin(ws, expression) executes expression and returns the results in the specified output variables. Using the evalin output argument list is recommended over including the output arguments in the expression string:
evalin(ws,'[a1, a2, a3, ...] = function(var)')
The above syntax avoids strict checking by the MATLAB parser and can produce untrapped errors and other unexpected behavior.
The MATLAB base workspace is the workspace that is seen from the MATLAB command line (when not in the debugger). The caller workspace is the workspace of the function that called the M-file. Note, the base and caller workspaces are equivalent in the context of an M-file that is invoked from the MATLAB command line.
If you use evalin('caller', ws) in the MATLAB debugger after having changed your local workspace context with dbup or dbdown, MATLAB evaluates the expression in the context of the function that is one level up in the stack from your current workspace context.
This example extracts the value of the variable var in the MATLAB base workspace and captures the value in the local variable v:
v = evalin('base', 'var');evalin cannot be used recursively to evaluate an expression. For example, a sequence of the form evalin('caller', 'evalin(''caller'', ''x'')') doesn't work.
assignin, eval, evalc, feval, catch, lasterror, try
![]() | evalc | event.EventData | ![]() |
| © 1984-2008- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |