Curve.SlopeAt Method

Gets the slope of the curve at the specified X-coordinate.

Definition

Namespace: Numerics.NET.Curves
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public virtual double SlopeAt(
	double x
)

Parameters

x  Double
A real number.

Return Value

Double
The slope of the curve at the specified X-coordinate.

Remarks

This method evaluates the derivative of the curve at the point x. By default, the derivative is approximated numerically using central differences.

See Also