breeze.interpolation
package breeze.interpolation
Type members
Classlikes
class CubicInterpolator(x_coords: Vector[Double], y_coords: Vector[Double]) extends HandyUnivariateInterpolator[Double]
- Companion:
- object
abstract class HandyUnivariateInterpolator[T](x_coords: Vector[T], y_coords: Vector[T])(implicit evidence$1: ClassTag[T], evidence$2: Field[T], evidence$3: Ordering[T]) extends UnivariateInterpolator[T]
class LinearInterpolator[T](x_coords: Vector[T], y_coords: Vector[T])(implicit evidence$1: ClassTag[T], evidence$2: Field[T], evidence$3: Ordering[T]) extends HandyUnivariateInterpolator[T]
- Companion:
- object
trait UnivariateInterpolator[T] extends VariableUFunc[UnivariateInterpolatorImpl.type, UnivariateInterpolator[T]]