numpy.polynomial.chebyshev.chebfit — NumPy v1.9 Manual
het.as.utexas.edu › HET › SoftwareNov 12, 2014 · numpy.polynomial.chebyshev.chebfit. ¶. Least squares fit of Chebyshev series to data. Return the coefficients of a Legendre series of degree deg that is the least squares fit to the data values y given at points x. If y is 1-D the returned coefficients will also be 1-D. If y is 2-D multiple fits are done, one for each column of y, and the ...
numpy.polynomial.chebyshev.chebfit — NumPy v1.22 Manual
numpy.org › doc › stablenumpy.polynomial.chebyshev.chebfit. ¶. Least squares fit of Chebyshev series to data. Return the coefficients of a Chebyshev series of degree deg that is the least squares fit to the data values y given at points x. If y is 1-D the returned coefficients will also be 1-D. If y is 2-D multiple fits are done, one for each column of y, and the ...
numpy.polynomial.chebyshev.chebmul — NumPy v1.22 Manual
numpy.org › doc › 1numpy.polynomial.chebyshev.chebmul. ¶. Multiply one Chebyshev series by another. Returns the product of two Chebyshev series c1 * c2. The arguments are sequences of coefficients, from lowest order “term” to highest, e.g., [1,2,3] represents the series T_0 + 2*T_1 + 3*T_2. 1-D arrays of Chebyshev series coefficients ordered from low to high.