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
Bezout equation for polynomials or integers
Calling Sequence
[thegcd,U]=bezout(p1,p2)
Arguments
- p1, p2
two real polynomials or two integer scalars (type equal to 8)
Description
[thegcd,U]=bezout(p1,p2)
computes GCD thegcd
of p1
and p2
and in addition a (2x2)
unimodular matrix U
such that:
[p1,p2]*U = [thegcd,0]
The lcm of p1
and p2
is given by:
p1*U(1,2)
(or -p2*U(2,2)
)
Examples
See Also
Report an issue | ||
<< Polynomials | Polynomials | chepol >> |