Scilab 6.0.1
- Scilabヘルプ
- Strings
- ascii
- asciimat
- blanks
- char
- convstr
- emptystr
- eval
- evstr
- grep
- isalphanum
- isascii
- isdigit
- isletter
- isnum
- justify
- length
- part
- prettyprint
- regexp
- sci2exp
- strcat
- strchr
- strcmp
- strcmpi
- strcspn
- strindex
- string
- strings
- stripblanks
- strncpy
- strrchr
- strrev
- strsplit
- strspn
- strstr
- strsubst
- strtod
- strtok
- tokenpos
- tokens
Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.
eval
文字列の行列を評価する (obsolete)
呼び出し手順
[H] = eval(Z)
引数
- Z
文字列の行列.
説明
eval関数は,
文字列の行列Zを評価したものを返します.
例
a=1; b=2; Z=['a','sin(b)']; eval(Z) //行列 [1, 0.909]を返します;
履歴
| Version | Description |
| 6.0.1 | eval() is declared obsolete, to be removed from Scilab 6.1.0.
Please use evstr() instead. |
| Report an issue | ||
| << emptystr | Strings | evstr >> |