Click or drag to resize

LinearSpline Constructor

Initializes a new instance of the LinearSpline class

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public LinearSpline(
	double[] x,
	double[] c0,
	double[] c1
)

Parameters

x  Double
Sample points (N+1), sorted ascending
c0  Double
Sample values (N or N+1) at the corresponding points; intercept, zero order coefficients
c1  Double
Slopes (N) at the sample points (first order coefficients): N
See Also