numpy.polynomial.polynomial.polypow
-
numpy.polynomial.polynomial.polypow(c, pow, maxpower=None)
[source] -
Raise a polynomial to a power.
Returns the polynomial
c
raised to the powerpow
. The argumentc
is a sequence of coefficients ordered from low to high. i.e., [1,2,3] is the series1 + 2*x + 3*x**2.
- Parameters
-
-
carray_like
-
1-D array of array of series coefficients ordered from low to high degree.
-
powinteger
-
Power to which the series will be raised
-
maxpowerinteger, optional
-
Maximum power allowed. This is mainly to limit growth of the series to unmanageable size. Default is 16
-
- Returns
-
-
coefndarray
-
Power series of power.
-
Examples
>>> from numpy.polynomial import polynomial as P >>> P.polypow([1,2,3], 2) array([ 1., 4., 10., 12., 9.])
© 2005–2020 NumPy Developers
Licensed under the 3-clause BSD License.
https://numpy.org/doc/1.19/reference/generated/numpy.polynomial.polynomial.polypow.html