Special.Jacobi P Method
Evaluates the Jacobi polynomial of the specified degree.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
The value of the Jacobi polynomial with parameters alpha and beta of degree degree evaluated at x.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
public static double JacobiP(
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
DoubleThe value of the Jacobi polynomial with parameters alpha and beta of degree degree evaluated at x.
Exceptions
Argument | degree is less than zero. |