Crate polynomial_tools

Source
Expand description

Functions for operations on polynomials.

Structs§

Cubic
A struct that contains the constants of an equation in the form of ax^3 + bx^2 + cx + d. Some useful functions are also implemented.
GeneralPolynomial
A struct that represents any polynomial.
Linear
A struct that contains the constants of an equation in the form ax + b. Some useful functions are also implemented.
Quadratic
A struct that contains the constants of an equation in the form of ax^2 + bx + c. Several useful functions are also implemented.
Quartic
A struct that contains the constants of an equation in the form of ax^4 + bx^3 + cx^2 + dx + e. Some useful functions are also implemented.

Traits§

Polynomial
A trait providing methods for operations on polynomials.