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
Laguerre functions are orthogonal on the interval [0,+∞) with the weight e-x.
ArgumentOutOfRangeException | n or x is negative. |