|
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.246-beta+ff392465a0262ee2737937d4127fc3c2f08c6dcd
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);
View SourceParameters
- 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