OrthogonalPolynomialsLaguerreL Method (Int32, Double) |
Computes the value of a 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 x
)
Public Shared Function LaguerreL (
n As Integer,
x As Double
) As Double
public:
static double LaguerreL(
int n,
double x
)
static member LaguerreL :
n : int *
x : float -> float
Parameters
- n
- Type: SystemInt32
The order, which must be non-negative. - x
- Type: SystemDouble
The argument, which must be non-negative.
Return Value
Type:
DoubleThe value L
n(x).
Exceptions Remarks Laguerre functions are orthogonal on the interval [0,+∞) with the weight e-x.
See Also