- Ajuda Scilab
- Scilab
- Scilab palavra-chave
- abort
- add_demo
- argn
- banner
- boolean
- break
- clear
- clearfun
- clearglobal
- comp
- continue
- debug
- delbpt
- dispbpt
- edit
- errcatch
- errclear
- error
- error_table
- exists
- exit
- external
- extraction
- format
- funcprot
- funptr
- getdebuginfo
- getmd5
- getmemory
- getmodules
- getos
- getscilabmode
- getshell
- getvariablesonstack
- getversion
- gstacksize
- ieee
- insertion
- intppty
- inv_coeff
- iserror
- isglobal
- lasterror
- macr2lst
- macr2tree
- matrices
- matrix
- mode
- mtlb_mode
- names
- newfun
- null
- pause
- perl
- poly
- predef
- quit
- rational
- readgateway
- resume
- sciargs
- scilab
- setbpt
- stacksize
- startup
- symbols
- testmatrix
- type
- typename
- user
- varn
- ver
- warning
- what
- where
- whereami
- who
- who_user
- whos
- with_atlas
- with_javasci
- with_macros_source
- with_module
- with_pvm
- with_texmacs
- with_tk
- TMPDIR
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
poly
definição de polinômios
Seqüência de Chamamento
p=poly(a,x, ["flag"])
Parâmetros
- a
matriz ou número real
- x
String, o nome da variável simbólica. Se o string tiver mais de 4 caracteres, apenas os quatro primeiros serão levados em conta.
- "flag"
string ("roots", "coeff"), valor padrão é "roots".
Descrição
- Se a é uma matriz,
p
é o polinômio característico, i.e.,determinant(x*eye()-a)
,x
sendo a variável simbólica.- Se v é um vetor,
poly(v,"x",["roots"])
é o polinômio com entradas dev
como raízes e"x"
como variável formal (neste caso,roots
epoly
são funções inversas). Note que infinitas raízes fornecem zero coeficientes de grau mais elevado.poly(v,"x","coeff")
cria o polinômio com símbolo"x"
e com entradas dev
como coeficientes (v(1) é o termo constante do polinômio). (aquipoly
ecoeff
são funções inversas).
s=poly(0,"s")
é a fonte para definir polinômios
com símbolo "s"
.
Exemplos
s=poly(0,"s");p=1+s+2*s^2; A=rand(2,2);poly(A,"x") //frações racionais h=(1+2*%s)/poly(1:4,'s','c')
See Also
<< perl | Scilab | predef >> |