Scilab-Branch-5.3-GIT
Please note that the recommended version of Scilab is 6.1.1. 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
Authors
S. Steer INRIA
Comments
Add a comment:
Please login to comment this page.