CurveFitter.ComputeFit Method

Computes the solution.

Definition

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

Parameters

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

Return Value

Curve
The Curve object that was fit.

See Also