Package space.kscience.kmath.interpolation
Types
Interpolator
Link copied to clipboard
LinearInterpolator
Link copied to clipboard
class LinearInterpolator<T : Comparable<T>>(algebra: Field<T>) : PolynomialInterpolator<T>
Content copied to clipboard
PolynomialInterpolator
Link copied to clipboard
interface PolynomialInterpolator<T : Comparable<T>> : Interpolator<T, T, T>
Content copied to clipboard
And interpolator returning PiecewisePolynomial function
SplineInterpolator
Link copied to clipboard
class SplineInterpolator<T : Comparable<T>>(algebra: Field<T>, bufferFactory: MutableBufferFactory<T>) : PolynomialInterpolator<T>
Content copied to clipboard
Functions
interpolatePolynomials
Link copied to clipboard
fun <T : Comparable<T>> PolynomialInterpolator<T>.interpolatePolynomials(data: List<Pair<T, 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(x: Buffer<T>, y: Buffer<T>): PiecewisePolynomial<T>
Content copied to clipboard