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: unknown class><Double>, yTable: <Error class: unknown class><Double>, yStride: Double, inputOrder: Int, outputOrder: Int, result: <Error class: unknown class><Double>? = definedExternally): <Error class: unknown class><Double>

Interpolates values using Hermite Polynomial Approximation.

Link copied to clipboard
fun interpolateOrderZero(x: Double, xTable: <Error class: unknown class><Double>, yTable: <Error class: unknown class><Double>, yStride: Double, result: <Error class: unknown class><Double>? = definedExternally): <Error class: unknown class><Double>

Interpolates values using Hermite Polynomial Approximation.