class LinearInterpolator : InterpolatorInterpolates values between the given data points using straight lines
| <init> |
LinearInterpolator(xs: DoubleArray, ys: DoubleArray)Interpolates values between the given data points using straight lines |
| interpolate |
fun interpolate(x: Double): Double |
| create |
fun create(xs: DoubleArray, ys: DoubleArray): LinearInterpolator |