numpy.polynomial.chebyshev.chebpow¶
-
numpy.polynomial.chebyshev.
chebpow
(c, pow, maxpower=16)[source]¶ 提高切比雪夫系列的力量。
返回提升到power pow的切比雪夫系列c。参数c是从低到高排序的系数序列。i.e., [1,2,3] is the series
T_0 + 2*T_1 + 3*T_2.
参数: c:array_like
1-D数组的切比雪夫系数系数从低到高排序。
pow:integer
将提高系列的功率
maxpower:integer,可选
允许的最大功率。这主要是将该系列的生长限制到难以控制的尺寸。默认值为16
返回: coef:ndarray
切比雪夫系列电源。