A Polynomial is a Sum of Monomials, not necessarily reduced or ordered. More...
Public Member Functions | |
| def | __init__ |
| Constructor. | |
| def | __str__ |
| Raw display of the Polynomial (debugging method). | |
| def | get_max_degree |
| Gets the maximal degree value that can be found in thePolynomial. | |
| def | get_degree |
| Gets the real Polynomial's degree. | |
| def | plus |
| The Sum Polynomial + objct(returned as a Polynomial if possible). | |
A Polynomial is a Sum of Monomials, not necessarily reduced or ordered.
Definition at line 7070 of file __init__.py.
| def obj::calc::Polynomial::__init__ | ( | self, | ||
| arg | ||||
| ) |
Constructor.
| arg | __.DEFAULT|[Monomial|Polynomial]|Sum(...)|(__.RANDOMLY, ...) Possible arguments are :
|
Reimplemented from obj::calc::Sum.
Definition at line 7097 of file __init__.py.
| def obj::calc::Polynomial::__str__ | ( | self, | ||
| options | ||||
| ) |
Raw display of the Polynomial (debugging method).
| options | No option available so far |
Reimplemented from obj::calc::Operation.
Definition at line 7246 of file __init__.py.
| def obj::calc::Polynomial::get_degree | ( | self | ) |
Gets the real Polynomial's degree.
Definition at line 7282 of file __init__.py.
| def obj::calc::Polynomial::get_max_degree | ( | self | ) |
Gets the maximal degree value that can be found in thePolynomial.
Definition at line 7265 of file __init__.py.
| def obj::calc::Polynomial::plus | ( | self, | ||
| objct | ||||
| ) |
The Sum Polynomial + objct(returned as a Polynomial if possible).
| objct | The second object to be added with |
Reimplemented from obj::calc::Calculable.
Definition at line 7325 of file __init__.py.
1.6.3