Polynomial Constructor
Represents a cubic polynomial.
Namespace: Austra.LibraryAssembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+44e7797405725ef3cf24b3ff0eba94ce6c649601
public Polynomial(
double K0,
double K1,
double K2,
double K3
)
Parameters
- K0 Double
- Coefficient for 0th-degree term.
- K1 Double
- Coefficient for 1st-degree term.
- K2 Double
- Coefficient for 2nd-degree term.
- K3 Double
- Coefficient for 3rd-degree term.
These polynomials admit arguments in the interval [0, 1].