Man Scilab

eval
Scilab Function

eval - evaluation of a matrix of strings

Calling Sequence

[H]= eval(Z)

Description

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

evstr ,   execstr ,  

Back