Python | Numpy np.lagpow() method (original) (raw)

Last Updated : 29 Dec, 2019

**np.lagpow()** method is used to raise a Laguerre series to a given power.It returns the Laguerre series c raised to the power pow.

Syntax : np.lagpow(c, pow, maxpower=16)
Parameters:
**c :**[array_like] 1-D arrays of Laguerre series coefficients ordered from low to high.
**pow :**[integer] Power to which the series will be raised.
**maxpower :**[integer, optional] Maximum allowed power.Default is 16.

Return : [ndarray] Laguerre series of power.

Code #1 :

import numpy as np

import numpy.polynomial.laguerre as geek

s = ( 2 , 4 , 8 )

res = geek.lagpow(s, pow = 3 )

print (res)

Output:

[ 3176. -25680. 100512. -206592. 246528. -161280. 46080.]

Code #2 :

import numpy as np

import numpy.polynomial.laguerre as geek

s = ( 1 , 2 , 3 , 4 , 5 )

res = geek.lagpow(s, pow = 4 )

print (res)

Output:

[ 1.88268525e+08 -4.12583040e+09 4.24806624e+10 -2.72789533e+11 1.22285197e+12 -4.05794076e+12 1.03122236e+13 -2.04726003e+13 3.20914270e+13 -3.98546302e+13 3.90872742e+13 -2.99578594e+13 1.75922875e+13 -7.65283919e+12 2.32607876e+12 -4.41441000e+11 3.94143750e+10]

Similar Reads