<< denom 6-0 eval3d >>
removed >> removed > 6-0 > eval

eval

evaluation of a matrix of strings

Syntax

H = eval(Z)

Arguments

Z

a matrix of character string.

Description

The eval function returns the evaluation of the matrix of character strings Z.

Examples

a = 1;
b = 2;
Z = ['a', 'sin(b)'];
eval(Z)  //returns the matrix [1, 0.909];

See also

History

VersionDescription
6.0.1 eval() is declared obsolete. Please use evstr() instead.
6.1.0 eval() is no longer available.

<< denom 6-0 eval3d >>