Meta.Numerics Library
LaguerreL Method (n, x)
Meta.NumericsMeta.Numerics.FunctionsOrthogonalPolynomialsLaguerreL(Int32, Double)
Computes the value of a Laguerre polynomial.
Declaration Syntax
C#Visual BasicVisual C++F#
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 (Int32)
The order, which must be non-negative.
x (Double)
The argument, which must be non-negative.
Return Value
The value Ln(x).
Remarks

Laguerre functions are orthogonal on the interval [0,+∞) with the weight e-x.

See Also