NonlinearCurve.GetPartialDerivatives Method

Returns a vector with the partial derivatives of the curve with respect to each of the curve parameters.

Definition

Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public DenseVector<double> GetPartialDerivatives(
	double x
)

Parameters

x  Double
The value at which the partial derivatives should be evaluated.

Return Value

DenseVector<Double>

Remarks

This method calculates the partial derivatives at the specified point with respect to the parameters of the curve. The current values of the parameters are used.

The default implementation of this method calculates the partial derivatives using simple forward differences.

See Also