CurveFitter<T>.ComputeFit Method

Computes the solution.

Definition

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

Parameters

solution  DenseVector<T>
On return, a Vector that contains the computed solution.
varianceCovarianceMatrix  SymmetricMatrix<T>
On return, SymmetricMatrix<T> that contains the variance-covariance matrix of the curve parameters.
standardError  T
On return, contains the standard error of the curve fit.

Return Value

Curve<T>
The Curve object that was fit.

See Also