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.181-beta
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