Gets the slope of the curve at the specified
X-coordinate.
Namespace:
Extreme.Mathematics.Curves
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public override double SlopeAt(
double x
)
Public Overrides Function SlopeAt (
x As Double
) As Double
public:
virtual double SlopeAt(
double x
) override
abstract SlopeAt :
x : float -> float
override SlopeAt :
x : float -> float
Parameters
- x
- Type: SystemDouble
A real number.
Return Value
Type:
DoubleThe slope of the curve at the specified
X-coordinate.
This method evaluates the derivative of the curve
at the point x. By default, the derivative
is approximated numerically using central differences.
Reference