- Ajuda do Scilab
- Cadeias de Caracteres (Strings)
- ascii
- asciimat
- blanks
- char
- convstr
- emptystr
- evstr
- grep
- isalphanum
- isascii
- isdigit
- isletter
- isnum
- justify
- length
- part
- prettyprint
- regexp
- sci2exp
- strcat
- strchr
- strcmp
- strcspn
- strindex
- string
- stripblanks
- strncpy
- strrchr
- strrev
- strsplit
- strspn
- strstr
- strsubst
- strtod
- strtok
- tokenpos
- tokens
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
evstr
avaliação de expressões
Seqüência de Chamamento
H = evstr(M) H = evstr(list(M, subExpr)) [H, ierr] = evstr(..)
Parâmetros
- M
matriz de strings
- subExpr
vetor de strings
- H
matriz
- ierr
inteiro, indicador de erro
Descrição
Retorna o resultado da avaliação da matriz de strings M
.
Cada elemento da matriz deve definir uma expressão Scilab válida.
Se a avaliação de M
levar a um erro, a versão de
valor de único retorno, H=evstr(M)
, levanta erro de
modo usual. A versão de dois valores de retorno,
[H,ierr]=evstr(M)
, por outro lado, não produz erro,
mas retorna o número de erro em ierr
.
Se uma lista for fornecida, subExpr
é um
vetor de strings, que define subexpressões que são avaliadas antes da
avaliação de M
. Estas subexpressões devem ser referidas
como %(k)
em M
, onde
k
é o índice da subexpressão em
Subexp
.
|
Special aliases:
|
Exemplos
a = 1; b = 2; Z = ['a','b'] ; evstr(Z) a = 1; b = 2; Z = list(['%(1)','%(1)-%(2)'],['a+1','b+1']); evstr(Z) evstr('NaN'), evstr('Inf') //The two return values version [H, ierr] = evstr(Z) // no error Z = ['a', 'b', 'c'] ;// the variable c is undefined [H, ierr] = evstr(Z) // error 4: Undefined variable: c
Ver Também
Histórico
Versão | Descrição |
5.3.0 | "Nan" and "NaN" are now parsed as %nan .
"Inf" and "INF" are now parsed as %inf . |
6.0.1 | Simple comments are now supported in almost all possible input expressions,
whatever is the shape of M . |
Report an issue | ||
<< emptystr | Cadeias de Caracteres (Strings) | grep >> |