AkimaCubicSpline Type

Akima cubic spline interpolation for the given abscissa vector x and ordinate vector y. All vectors must have conformant dimenions. The abscissa vector must be strictly increasing.

Constructors

Constructor Description

AkimaCubicSpline()

Full Usage: AkimaCubicSpline()

Instance members

Instance member Description

this.GetXOfU

Full Usage: this.GetXOfU

Parameters:
    u : float

Returns: float
Modifiers: abstract

u : float
Returns: float

this.GetY1stDerivativeOfX

Full Usage: this.GetY1stDerivativeOfX

Parameters:
    u : float

Returns: float

u : float
Returns: float

this.GetYOfU

Full Usage: this.GetYOfU

Parameters:
    u : float

Returns: float
Modifiers: abstract

u : float
Returns: float

this.GetYOfX

Full Usage: this.GetYOfX

Parameters:
    u : float

Returns: float
Modifiers: abstract

u : float
Returns: float

this.Interpolate

Full Usage: this.Interpolate

Parameters:
Modifiers: abstract

x : IReadOnlyList<float>
y : IReadOnlyList<float>