interface Interpolator| interpolate |
abstract fun interpolate(x: Double): Double |
| CubicSplineInterpolator |
class CubicSplineInterpolator : InterpolatorInterpolates values between the given data points using a SplineFunction. |
| LinearInterpolator |
class LinearInterpolator : InterpolatorInterpolates values between the given data points using straight lines |