Scilab 5.3.3
- Scilab help
- Strings
- ascii
- blanks
- code2str
- convstr
- emptystr
- eval
- evstr
- grep
- isalphanum
- isascii
- isdigit
- isletter
- isnum
- justify
- length
- part
- regexp
- sci2exp
- str2code
- strcat
- strchr
- strcmp
- strcmpi
- strcspn
- strindex
- string
- strings
- stripblanks
- strncpy
- strrchr
- strrev
- strsplit
- strspn
- strstr
- strsubst
- strtod
- strtok
- tokenpos
- tokens
- tree2code
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.
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];
<< emptystr | Strings | evstr >> |