Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.5.2 - Русский

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 >> Polynomials > pdiv

pdiv

polynomial division

Calling Sequence

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

Arguments

P1

polynomial matrix

P2

polynomial or polynomial matrix

R,Q

two polynomial matrices

Description

Element-wise euclidan division of the polynomial matrix P1 by the polynomial P2 or by the polynomial matrix P2. Rij is the matrix of remainders, Qij is the matrix of quotients and P1ij = Qij*P2 + Rij or P1ij = Qij*P2ij + Rij.

Examples

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

See Also

  • ldiv — polynomial matrix long division
  • gcd — наибольший общий делитель (НОД)
Report an issue
<< numer Polynomials pol2str >>

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:
Wed Apr 01 10:27:17 CEST 2015