Scilab 5.5.2
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
pdiv
多項式の除算
呼び出し手順
[R,Q]=pdiv(P1,P2) [Q]=pdiv(P1,P2)
パラメータ
- P1
多項式の行列
- P2
多項式または多項式行列
- R,Q
多項式行列
説明
多項式行列P1
の多項式P2
または
多項式行列P2
による
要素毎のユークリッド除算.
Rij
は余りの行列,
Qij
は商の行列,そして,
P1ij = Qij*P2 + Rij
または P1ij = Qij*P2ij + Rij
です.
例
x=poly(0,'x'); p1=(1+x^2)*(1-x);p2=1-x; [r,q]=pdiv(p1,p2) p2*q-p1 p2=1+x; [r,q]=pdiv(p1,p2) p2*q+r-p1
Report an issue | ||
<< numer | Polynomials | pol2str >> |