bundles / numpy 2.4.4 / numpy / polynomial / _polybase / ABCPolyBase / cast
classmethod
numpy.polynomial._polybase:ABCPolyBase.cast
Summary
Convert series to series of this class.
Extended Summary
The series is expected to be an instance of some polynomial series of one of the types supported by by the numpy.polynomial module, but could be some other class that supports the convert method.
Parameters
series: seriesThe series instance to be converted.
domain: {None, array_like}, optionalIf given, the array must be of the form
[beg, end], wherebegandendare the endpoints of the domain. If None is given then the class domain is used. The default is None.window: {None, array_like}, optionalIf given, the resulting array must be if the form
[beg, end], wherebegandendare the endpoints of the window. If None is given then the class window is used. The default is None.
Returns
new_series: seriesA series of the same kind as the calling class and equal to series when evaluated.
See also
- convert
similar instance method
Aliases
-
numpy.polynomial._polybase.ABCPolyBase.cast