CurveFitter.Fit Method

Calculates the least-squares fit.

Definition

Namespace: Numerics.NET.Curves
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public Curve Fit()

Return Value

Curve
A reference to the Curve that best fits the data.

Exceptions

InvalidOperationException

The XValues have not been set.

-or-

The YValues have not been set.

-or-

The Curve has not been set.

DimensionMismatchException

The length of XValues does not equal the lenght of YValues.

InsufficientDataException

The number of data points is less than the number of curve parameters.

See Also