Scilab 5.5.0
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
bezout
多項式またh整数のべズー方程式
Calling Sequence
[thegcd,U]=bezout(p1,p2)
Parameters
- p1, p2
2つの実数多項式または2つの整数スカラー(8型)
説明
[thegcd,U]=bezout(p1,p2)
は GCD,
p1
および p2
の
thegcd
および
以下のような(2x2) ユニモジュラ行列U
を計算します:
[p1,p2]*U = [thegcd,0]
p1
およびp2
のlcmは
以下のように指定されます:
p1*U(1,2)
(または -p2*U(2,2)
)
例
Report an issue | ||
<< Polynomials | Polynomials | chepol >> |