Represents a Gaussian 'bell' curve that can be used for a non-linear regression calculation.

Namespace: Extreme.Mathematics.Curves.Nonlinear
Assembly:   Extreme.Numerics (in Extreme.Numerics)
Version: 2.1.7017.0

Syntax

Visual Basic (Declaration)
Public Class GaussianCurve _
	Inherits NonlinearCurve
C#
public class GaussianCurve : NonlinearCurve
Visual C++
public ref class GaussianCurve : public NonlinearCurve

Remarks

Use the GaussianCurve class to represent a four-parameter Gaussian curve with the characteristic 'bell' shape. This curve is used to fit data that contains a peak. The peak is less pronounced than that of the Lorentz curve.

For details on how to fit a curve of this type, see the NonlinearCurveFitter class.

Inheritance Hierarchy

System.Object
  Extreme.Mathematics.Curves.Curve
    Extreme.Mathematics.Curves.NonlinearCurve
      Extreme.Mathematics.Curves.Nonlinear.GaussianCurve

See Also