CurveFitter.Fit Method

Calculates the least-squares fit.

Definition

Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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