HermitePolynomialApproximation

An InterpolationAlgorithm for performing Hermite interpolation.

See also

Functions

Link copied to clipboard
fun getRequiredDataPoints(degree: Double, inputOrder: Int? = definedExternally): Int

Given the desired degree, returns the number of data points required for interpolation.

Link copied to clipboard
fun interpolate(x: Double, xTable: ERROR CLASS: Symbol not found for ReadonlyArray<ERROR CLASS: Symbol not found for JsDouble>, yTable: ERROR CLASS: Symbol not found for ReadonlyArray<ERROR CLASS: Symbol not found for JsDouble>, yStride: Double, inputOrder: Int, outputOrder: Int, result: ERROR CLASS: Symbol not found for ReadonlyArray<ERROR CLASS: Symbol not found for JsDouble>?? = definedExternally): ERROR CLASS: Symbol not found for ReadonlyArray<ERROR CLASS: Symbol not found for JsDouble>

Interpolates values using Hermite Polynomial Approximation.

Link copied to clipboard
fun interpolateOrderZero(x: Double, xTable: ERROR CLASS: Symbol not found for ReadonlyArray<ERROR CLASS: Symbol not found for JsDouble>, yTable: ERROR CLASS: Symbol not found for ReadonlyArray<ERROR CLASS: Symbol not found for JsDouble>, yStride: Double, result: ERROR CLASS: Symbol not found for ReadonlyArray<ERROR CLASS: Symbol not found for JsDouble>?? = definedExternally): ERROR CLASS: Symbol not found for ReadonlyArray<ERROR CLASS: Symbol not found for JsDouble>

Interpolates values using Hermite Polynomial Approximation.