Polynomial Constructor

Represents a cubic polynomial.

Definition

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+d1268756e036101f601080f153b3997e72fc912d
C#
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.

Remarks

These polynomials admit arguments in the interval [0, 1].

See Also