Interpolation class abstract base

An abstract class that represents an interpolation strategy, used to find new data points based on a given discrete set of data points (called nodes). The algorithms implemented by this package are:

Implementers

Constructors

Interpolation({required List<InterpolationNode> nodes})
Creates an Interpolation object with the given nodes.
const

Properties

hashCode int
The hash code for this object.
no setteroverride
nodes List<InterpolationNode>
The interpolation nodes.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

compute(double x) double
Returns the y value of the y = f(x) equation.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
override