NAME
Math::Gsl::Polynomial - Perl Interface to solving polynomials with The GNU Scientific Library
SYNOPSIS
use Math::Complex;
use Math::Gsl::Polynomial qw(poly_complex_solve);
my @a = (15,-8,1);
my @roots = poly_complex_solve(@a);
DESCRIPTION
The only function defined in this module is poly_complex_solve. Note
that it is not imported by default.
Exported Constants
None
Exported Functions
poly_complex_solve
SEE ALSO
GNU Scientific Library http://sources.redhat.com/gsl
To get Math::Gsl: http://www.leto.net/code/gsl/
Math::Polynomial
Math::Polynomial::Solve