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.260-beta+cb466f216da12fb731bf5493e0294c87f9de1794
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