MATLAB Function Reference |
Determine the symbolic variables in an expression
Syntax
Description
symvar 'expr'
searches the expression, expr
, for identifiers other than i
, j
, pi
, inf
, nan
, eps
, and common functions. symvar
displays those variables that it finds or, if no such variable exists, displays an empty cell array, {}
.
s = symvar('expr')
returns the variables in a cell array of strings, s
. If no such variable exists, s
is an empty cell array.
Examples
symvar
finds variables beta1
and x
, but skips pi
and the cos
function.
See Also
symrcm | system |
© 1994-2005 The MathWorks, Inc.