Special.Laguerre L Method
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Laguerre | Evaluates the Laguerre polynomial of the specified degree. |
Laguerre | Evaluates the generalized Laguerre polynomial of the specified degree. |
LaguerreL(Int32, Double)
Evaluates the Laguerre polynomial of the specified degree.
public static double LaguerreL(
int degree,
double x
)
Parameters
Return Value
DoubleThe value of the Laguerre polynomial of degree degree evaluated at x.
Exceptions
Argument | degree is less than zero. |
LaguerreL(Int32, Double, Double)
Evaluates the generalized Laguerre polynomial of the specified degree.
public static double LaguerreL(
int degree,
double lambda,
double x
)
Parameters
- degree Int32
- The degree of the generalized Laguerre polynomial.
- lambda Double
- The parameter of the generalized Laguerre polynomial.
- x Double
- A real number.
Return Value
DoubleThe value of the generalized Laguerre polynomial with parameter lambda of degree degree evaluated at x.
Exceptions
Argument | degree is less than zero. |