public static double LaguerreL(
int n,
double alpha,
double x
)
Public Shared Function LaguerreL (
n As Integer,
alpha As Double,
x As Double
) As Double
public:
static double LaguerreL(
int n,
double alpha,
double x
)
static member LaguerreL :
n : int *
alpha : float *
x : float -> float
The associated Laguerre polynomials are orthogonal on the interval [0,+∞) with the weight xa e-x.
ArgumentOutOfRangeException | n of x is negative, or alpha is less than or equal to -1. |