SplineKernels.Linear Property

Gets the standard 2-point linear interpolation kernel.

Definition

Namespace: Numerics.NET.Curves.Surfaces
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.1.0
C#
public static ISplineKernel1D Linear { get; }

Property Value

ISplineKernel1D
A kernel implementing piecewise-linear interpolation with width 2.

Remarks

This kernel performs standard linear interpolation between two consecutive knots. It is C⁰ continuous (continuous value) but has discontinuous first derivatives at knots.

Continuity: C⁰

Width: 2 (uses 2 neighboring points)

Use cases: Fast interpolation when smoothness is not required, or as a baseline for comparison with higher-order methods.

See Also