Curve<T>.Get Derivative Method
Definition
Namespace: Numerics.NET.Curves.Generic
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.1
C#
A Curve that represents the derivative of this curve.
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.1
public virtual Curve<T> GetDerivative()
Return Value
Curve<T>A Curve that represents the derivative of this curve.
Remarks
The value of the derivative of a curve at a point is the slope of the curve at that point.
By default, this method returns a GeneralCurve created from an automatic numerical differentiator delegate producted by the GetNumericalDifferentiator(Func<Double, Double>) method of the FunctionMath class.