numpy.polynomial.chebyshev.Chebyshev.convert

Chebyshev.convert(domain=None, kind=None, window=None)

Convert to different class and/or domain.

Parameters :

domain : array_like, optional

The domain of the converted series. If the value is None, the default domain of kind is used.

kind : class, optional

The polynomial series type class to which the current instance should be converted. If kind is None, then the class of the current instance is used.

window : array_like, optional

The window of the converted series. If the value is None, the default window of kind is used.

Returns :

new_series_instance : kind

The returned class can be of different type than the current instance and/or have a different domain.

Notes

Conversion between domains and class types can result in numerically ill defined series.

Previous topic

numpy.polynomial.chebyshev.Chebyshev.cast

Next topic

numpy.polynomial.chebyshev.Chebyshev.copy

This Page