IInterpolator Interface

Represents a curve that can interpolate values and resample data points.

Definition

Namespace: Numerics.NET.Curves
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.0.0
C#
public interface IInterpolator

Remarks

The IInterpolator interface defines a minimal set of methods for interpolating values at arbitrary points and resampling data. All curve types that can be used for interpolation implement this interface.

Properties

LowerBound Gets the lower bound of the interpolation domain.
UpperBound Gets the upper bound of the interpolation domain.

Methods

ValueAt Evaluates the interpolated value at the specified x-coordinate.

Extension Methods

Resample Resamples an interpolator at the specified x-coordinates.
(Defined by Interpolation)
ResampleInto Resamples an interpolator at the specified x-coordinates into a pre-allocated buffer.
(Defined by Interpolation)

See Also