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.276-beta+3dd4b43be3e31323696af3ab6b14b705e6420d69
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