Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.1 - 日本語

Change language to:
English - Français - Português

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilab help >> Polynomials > pdiv

pdiv

多項式の除算

呼び出し手順

[R,Q]=pdiv(P1,P2)
[Q]=pdiv(P1,P2)

パラメータ

P1

多項式の行列

P2

多項式または多項式行列

R,Q

多項式行列

説明

多項式行列P1の多項式P2または 多項式行列P2による 要素毎のユークリッド除算. Rijは余りの行列, Qijは商の行列,そして, P1ij = Qij*P2 + Qij または P1ij = Qij*P2ij + Qij です.

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

参照

  • ldiv — 多項式行列の長除算
  • gcd — 最大公約数を計算
<< numer Polynomials pol2des >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Thu Mar 03 11:00:55 CET 2011