CurveFitter.ComputeFit Method

Computes the solution.

Definition

Namespace: Numerics.NET.Curves
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.0.0
C#
protected abstract Curve ComputeFit(
	ref DenseVector<double> solution,
	ref SymmetricMatrix<double> varianceCovarianceMatrix,
	ref double standardError
)

Parameters

solution  DenseVector<Double>
When this method returns, a Vector that contains the computed solution.
varianceCovarianceMatrix  SymmetricMatrix<Double>
When this method returns, SymmetricMatrix<T> that contains the variance-covariance matrix of the curve parameters.
standardError  Double
When this method returns, contains the standard error of the curve fit.

Return Value

Curve
The Curve object that was fit.

See Also