polynom
: Polynom¶
This is a simple demonstration library
- pypolynom.polynom.polynom(a, b, c)¶
Solve the quadratic equation.
\[a \cdot x^2 + b \cdot x + c = 0\]- Parameters
a (float) – a value of the polynom
b (float) – b value of the polynom
c (float) – c value of the polynom
- Return type
List[float]