Raise a polynomial to a power.
Returns the polynomial c raised to the power pow. The argument c is a sequence of coefficients ordered from low to high. i.e., [1,2,3] is the series 1 + 2*x + 3*x**2.
Parameters : | c : array_like
pow : integer
maxpower : integer, optional
|
---|---|
Returns : | coef : ndarray
|