|   | SplineFitComputeCubicSplines Method | 
        
        
            Computes a cubic spline for interpolating values from the given data set.
            
        
        Namespace: GSF.NumericalAnalysisAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
Syntaxpublic static SplineFit ComputeCubicSplines(
	IList<double> xValues,
	IList<double> yValues
)
Public Shared Function ComputeCubicSplines ( 
	xValues As IList(Of Double),
	yValues As IList(Of Double)
) As SplineFit
public:
static SplineFit^ ComputeCubicSplines(
	IList<double>^ xValues, 
	IList<double>^ yValues
)
static member ComputeCubicSplines : 
        xValues : IList<float> * 
        yValues : IList<float> -> SplineFit GSF.NumericalAnalysis.SplineFit.ComputeCubicSplines = function(xValues, yValues);
Parameters
- xValues  IListDouble
- The x-values of each sampled data point.
- yValues  IListDouble
- The y-values of each sampled data point.
Return Value
SplineFitA 
SplineFit representing the collection of splines to be used for interpolation.
 See Also
See Also