class poly1d:
A one-dimensional polynomial class.
Note
This forms part of the old polynomial API. Since version 1.4, the
new polynomial API defined in numpy.polynomial
is preferred.
A summary of the differences can be found in the
:doc:`transition guide </reference/routines.polynomials>`.
A convenience class, used to encapsulate "natural" operations on polynomials so that said operations may take on their customary form in code (see Examples).
c_or_r
specifies the polynomial's roots; the default
is False.p
from x
to variable
(see Examples).Construct the polynomial x2 + 2x + 3:
>>> p = np.poly1d([1, 2, 3]) >>> print(np.poly1d(p)) 2 1 x + 2 x + 3
Evaluate the polynomial at x = 0.5:
>>> p(0.5) 4.25
Find the roots:
>>> p.r array([-1.+1.41421356j, -1.-1.41421356j]) >>> p(p.r) array([ -4.44089210e-16+0.j, -4.44089210e-16+0.j]) # may vary
These numbers in the previous line represent (0, 0) to machine precision
Show the coefficients:
>>> p.c array([1, 2, 3])
Display the order (the leading zero-coefficients are removed):
>>> p.order 2
Show the coefficient of the k-th power in the polynomial (which is equivalent to p.c[-(i+1)]):
>>> p[1] 2
Polynomials can be added, subtracted, multiplied, and divided (returns quotient and remainder):
>>> p * p poly1d([ 1, 4, 10, 12, 9])
>>> (p**3 + 4) / p (poly1d([ 1., 4., 10., 12., 9.]), poly1d([4.]))
asarray(p) gives the coefficient array, so polynomials can be used in all functions that accept arrays:
>>> p**2 # square of polynomial poly1d([ 1, 4, 10, 12, 9])
>>> np.square(p) # square of individual coefficients array([1, 4, 9])
The variable used in the string representation of p
can be modified,
using the variable
parameter:
>>> p = np.poly1d([1,2,3], variable='z') >>> print(p) 2 1 z + 2 z + 3
Construct a polynomial from its roots:
>>> np.poly1d([1, 2], True) poly1d([ 1., -3., 2.])
This is the same polynomial as obtained by:
>>> np.poly1d([1, -1]) * np.poly1d([1, -2]) poly1d([ 1, -3, 2])
Method | __add__ |
Undocumented |
Method | __array__ |
Undocumented |
Method | __call__ |
Undocumented |
Method | __div__ |
Undocumented |
Method | __eq__ |
Undocumented |
Method | __getitem__ |
Undocumented |
Method | __init__ |
Undocumented |
Method | __iter__ |
Undocumented |
Method | __len__ |
Undocumented |
Method | __mul__ |
Undocumented |
Method | __ne__ |
Undocumented |
Method | __neg__ |
Undocumented |
Method | __pos__ |
Undocumented |
Method | __pow__ |
Undocumented |
Method | __radd__ |
Undocumented |
Method | __rdiv__ |
Undocumented |
Method | __repr__ |
Undocumented |
Method | __rmul__ |
Undocumented |
Method | __rsub__ |
Undocumented |
Method | __setitem__ |
Undocumented |
Method | __str__ |
Undocumented |
Method | __sub__ |
Undocumented |
Method | _coeffs.setter |
Undocumented |
Method | coeffs.setter |
Undocumented |
Method | deriv |
Return a derivative of this polynomial. |
Method | integ |
Return an antiderivative (indefinite integral) of this polynomial. |
Class Variable | __hash__ |
Undocumented |
Instance Variable | _coeffs |
Undocumented |
Instance Variable | _variable |
Undocumented |
Property | coeffs |
The polynomial coefficients |
Property | order |
The order or degree of the polynomial |
Property | roots |
The roots of the polynomial, where self(x) == 0 |
Property | variable |
The name of the polynomial variable |
Return a derivative of this polynomial.
Refer to polyder
for full documentation.
polyder : equivalent function
Return an antiderivative (indefinite integral) of this polynomial.
Refer to polyint
for full documentation.
polyint : equivalent function