Special.JacobiPWithDerivative Method

Evaluates the Jacobi polynomial of the specified degree and its first derivative.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
C#
public static (double value, double derivative) JacobiPWithDerivative(
	int degree,
	double alpha,
	double beta,
	double x
)

Parameters

degree  Int32
The degree of the Jacobi polynomial.
alpha  Double
The first parameter of the Jacobi polynomial.
beta  Double
The second parameter of the Jacobi polynomial.
x  Double
A real number.

Return Value

ValueTuple<Double, Double>
A tuple containing the value and first derivative of the Jacobi polynomial with parameters alpha and beta of degree degree evaluated at x.

Exceptions

ArgumentOutOfRangeException

degree is less than zero.

See Also