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