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.266-beta+c6b78f50c57a6e00a35ffa6b1d344e516617d5cd
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