class CubicSplineInterpolator : InterpolatorInterpolates values between the given data points using a SplineFunction.
Implementation uses the Natural Cubic Spline algorithm as described in
R. L. Burden and J. D. Faires (2011),
| <init> |
CubicSplineInterpolator(xs: DoubleArray, ys: DoubleArray)Interpolates values between the given data points using a SplineFunction. |
| interpolate |
fun interpolate(x: Double): Double |
| create |
fun create(xs: DoubleArray, ys: DoubleArray): CubicSplineInterpolator |