AbstractPolynomial

Provides the general interface an abstract polynomial needs ot support, including multiplication, addition, shifting, access of coefficients, and evaluation

 

@property
scaling(self): 

 

__mul__(self, other) -> 'AbstractPolynomial': 

 

__add__(self, other) -> 'AbstractPolynomial': 

 

shift(self, shift) -> 'AbstractPolynomial': 

 

__rmul__(self, other) -> 'AbstractPolynomial': 

 

__radd__(self, other) -> 'AbstractPolynomial': 

 

__truediv__(self, other) -> 'AbstractPolynomial': 

 

__neg__(self): 

 

__sub__(self, other): 

 

__rsub__(self, other): 

Feedback

Examples

Templates

Documentation