Click or drag to resize

RMathEvaluatePolynom1stDerivativeOrderAscending(Double, IReadOnlyListDouble) Method

Evaluates the 1st derivative of a polynom. The polynomial coefficients are given in ascending order, thus a0 is the first element in the array of coefficients.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public static double EvaluatePolynom1stDerivativeOrderAscending(
	double x,
	IReadOnlyList<double> coefficients
)

Parameters

x  Double
The x value.
coefficients  IReadOnlyListDouble
The polynomial coefficients in ascending order.

Return Value

Double
The value of the 1st derivative of the polynom.
See Also