Scilab-Branch-6.1-GIT
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
inv_coeff
constrói uma matriz de polinômios a partir de seus coeficientes
Seqüência de Chamamento
P = inv_coeff(C) P = inv_coeff(C, d) P = inv_coeff(C, d, varname)
Parâmetros
- C
matriz grande de coeficientes
- d
grau da matriz de polinômios. Parâmetro opcional com valor padrão
d=-1+size(C,'c')/size(C,'r')
- varname
string fornecendo o nome da variável polinomial (valor padrão
'x'
).
Descrição
P=inv_coeff(Mp,k)
, quando k
é
compatível com o tamanho de Mp
size, retorna uma matriz
de polinômios de grau k. C=[C0,C1,...,Ck]
and
P= C0 + C1*x +... +Ck*x^k
.
Exemplos
Report an issue | ||
<< htrianr | Polinômios | invr >> |