ChebyshevSeries<T>.GetDerivative Method

Returns a Curve that represents the derivative of this ChebyshevSeries.

Definition

Namespace: Numerics.NET.Curves.Generic
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.0
C#
public override Curve<T> GetDerivative()

Return Value

Curve<T>
A ChebyshevSeries that represents the derivative of this curve.

Remarks

The derivative of a Chebyshev series is evaluated directly in terms of the coefficients of the series and is returned as a new Chebyshev series of degree one less than the original.

See Also