Polynomial Structure

Represents a cubic polynomial.

Definition

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+d1268756e036101f601080f153b3997e72fc912d
C#
public readonly struct Polynomial : IEquatable<Polynomial>
Inheritance
Object    ValueType    Polynomial
Implements
IEquatablePolynomial

Remarks

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

Constructors

PolynomialRepresents a cubic polynomial.

Properties

AreaGets the unscaled area below the cubic polynomial.
K0Coefficient for 0th-degree term.
K1Coefficient for 1st-degree term.
K2Coefficient for 2nd-degree term.
K3Coefficient for 3rd-degree term.

Methods

DerivativeEvaluates the derivative of the polynomial at a given argument.
EvalEvaluates the polynomial at a given argument.
GetTypeGets the Type of the current instance.
(Inherited from Object)
ToStringGets a textual representation of the cubic polynomial.
(Overrides ValueTypeToString)

See Also