Instances of this class represent polynomials of any order and in any
number of variables. The coefficients and thus the values can be real or
complex. Polynomials can be evaluated like functions.
|
|
number
|
__call__(self,
*args)
Returns:
the value of the polynomial at the given point |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Polynomial
|
derivative(self,
variable=0)
Returns:
a polynomial of reduced order in one variable |
|
|
Polynomial
|
integral(self,
variable=0)
Returns:
a polynomial of higher order in one variable |
|
|
Numeric.array
|
zeros(self)
Find the zeros (roots) of the
polynomial by diagonalization of the associated Frobenius matrix. |
|
|