Click or drag to resize

Polynomial Structure

Represents a cubic polynomial.
Inheritance Hierarchy
SystemObject
  SystemValueType
    Austra.LibraryPolynomial

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+44e7797405725ef3cf24b3ff0eba94ce6c649601
Syntax
C#
public readonly struct Polynomial : IEquatable<Polynomial>

The Polynomial type exposes the following members.

Constructors
 NameDescription
Public methodPolynomialRepresents a cubic polynomial.
Top
Properties
 NameDescription
Public propertyAreaGets the unscaled area below the cubic polynomial.
Public propertyK0Coefficient for 0th-degree term.
Public propertyK1Coefficient for 1st-degree term.
Public propertyK2Coefficient for 2nd-degree term.
Public propertyK3Coefficient for 3rd-degree term.
Top
Methods
 NameDescription
Public methodDerivativeEvaluates the derivative of the polynomial at a given argument.
Public methodEvalEvaluates the polynomial at a given argument.
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodToStringGets a textual representation of the cubic polynomial.
(Overrides ValueTypeToString)
Top
Remarks
These polynomials admit arguments in the interval [0, 1].
See Also