PolynomialInterpolator
interface PolynomialInterpolator<T : Comparable<T>> : Interpolator<T, T, T>
Content copied to clipboard
And interpolator returning PiecewisePolynomial function
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
abstract fun interpolatePolynomials(points: XYColumnarData<T, T, T>): PiecewisePolynomial<T>
Content copied to clipboard
Properties
Inheritors
Extensions
Link copied to clipboard
fun <T : Comparable<T>> PolynomialInterpolator<T>.interpolate(x: Buffer<T>, y: Buffer<T>): (T) -> T?
Content copied to clipboard
fun <T : Comparable<T>> PolynomialInterpolator<T>.interpolate(data: Map<T, T>): (T) -> T?
Content copied to clipboard
fun <T : Comparable<T>> PolynomialInterpolator<T>.interpolate(data: List<Pair<T, T>>): (T) -> T?
Content copied to clipboard
fun <T : Comparable<T>> PolynomialInterpolator<T>.interpolate(x: Buffer<T>, y: Buffer<T>, defaultValue: T): (T) -> T
Content copied to clipboard
fun <T : Comparable<T>> PolynomialInterpolator<T>.interpolate(data: Map<T, T>, defaultValue: T): (T) -> T
Content copied to clipboard
fun <T : Comparable<T>> PolynomialInterpolator<T>.interpolate(data: List<Pair<T, T>>, defaultValue: T): (T) -> T
Content copied to clipboard
Link copied to clipboard
fun <T : Comparable<T>> PolynomialInterpolator<T>.interpolatePolynomials(x: Buffer<T>, y: Buffer<T>): PiecewisePolynomial<T>
Content copied to clipboard
fun <T : Comparable<T>> PolynomialInterpolator<T>.interpolatePolynomials(data: Map<T, T>): PiecewisePolynomial<T>
Content copied to clipboard
fun <T : Comparable<T>> PolynomialInterpolator<T>.interpolatePolynomials(data: List<Pair<T, T>>): PiecewisePolynomial<T>
Content copied to clipboard