Scilab 6.0.1
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
係数を指定して多項式行列を作成
呼び出し手順
[P]=inv_coeff(C,[,d,[name])
パラメータ
- C
係数の行列
- d
多項式行列の次数. オプションのパラメータでデフォルト値は
d=-1+size(C,'c')/size(C,'r')
- name
多項式の変数名を指定する文字列 (デフォルト値:
'x'
).
説明
P=inv_coeff(Mp,k)
は, k
が Mp
の
大きさと互換性がある場合, k次の多項式行列を返します.
C=[C0,C1,...,Ck]
の時,
P= C0 + C1*x +... +Ck*x^k
となります.
例
Report an issue | ||
<< htrianr | Polynomials | invr >> |