Scilab 6.0.0
- Scilab Help
- Strings
- ascii
- asciimat
- blanks
- char
- convstr
- emptystr
- eval
- evstr
- grep
- isalphanum
- isascii
- isdigit
- isletter
- isnum
- justify
- length
- part
- regexp
- sci2exp
- strcat
- strchr
- strcmp
- strcmpi
- strcspn
- strindex
- string
- strings
- stripblanks
- strncpy
- strrchr
- strrev
- strsplit
- strspn
- strstr
- strsubst
- strtod
- strtok
- tokenpos
- tokens
Scilab Help >> Strings > 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];
Comments
Add a comment:
Please login to comment this page.