Click or drag to resize

SplineFitComputeCubicSplines Method

Computes a cubic spline for interpolating values from the given data set.

Namespace: GSF.NumericalAnalysis
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.265-beta+b9fecb767fe978094c19da8101c12474843773cb
Syntax
public static SplineFit ComputeCubicSplines(
	IList<double> xValues,
	IList<double> yValues
)
View Source

Parameters

xValues  IListDouble
The x-values of each sampled data point.
yValues  IListDouble
The y-values of each sampled data point.

Return Value

SplineFit
A SplineFit representing the collection of splines to be used for interpolation.
See Also