OrthogonalPolynomialsLaguerreL Method (Int32, Double, Double) |
Computes the value of an associated Laguerre polynomial.
Namespace:
Meta.Numerics.Functions
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static double LaguerreL(
int n,
double a,
double x
)
Public Shared Function LaguerreL (
n As Integer,
a As Double,
x As Double
) As Double
public:
static double LaguerreL(
int n,
double a,
double x
)
static member LaguerreL :
n : int *
a : float *
x : float -> float
Parameters
- n
- Type: SystemInt32
The order, which must be non-negative. - a
- Type: SystemDouble
The associated order, which must be greater than -1. - x
- Type: SystemDouble
The argument.
Return Value
Type:
DoubleThe value L
na(x).
Remarks The associated Laguerre polynomials are orthogonal on the interval [0,+∞) with the weight
xa e-x.
See Also