Represents a curve in two-dimensional space whose value
is defined by a function of one variable delegate.
SystemObject Extreme.Mathematics.CurvesCurve Extreme.Mathematics.CurvesGeneralCurve
Namespace:
Extreme.Mathematics.Curves
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public class GeneralCurve : Curve
Public Class GeneralCurve
Inherits Curve
public ref class GeneralCurve : public Curve
type GeneralCurve =
class
inherit Curve
end
The GeneralCurve type exposes the following members.
Top
| Name | Description |
---|
 | Parameters |
Gets the collection of parameters that determine the shape of this
Curve.
(Inherited from Curve.) |
Top
Top
This class inherits from the Curve
class, which provides common
properties and methods for all classes that represent
two-dimensional curves.
The ValueAt(Double) method evaluates the
curve at a specific point. SlopeAt(Double)
evaluates the derivative, and Integral(Double, Double)
evaluates the definite integral over a specified
interval. If overridden by a descendant class, the
GetDerivative method returns the
Curve that is the derivative of
the instance. The FindRoots method
attempts to find one zero of the function using
Newton's
method.
Curves of this type do not have any parameters.
The Parameters collection is always
empty.
Reference