Special.LaguerreL Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

LaguerreL(Int32, Double) Evaluates the Laguerre polynomial of the specified degree.
LaguerreL(Int32, Double, Double) Evaluates the generalized Laguerre polynomial of the specified degree.

LaguerreL(Int32, Double)

Evaluates the Laguerre polynomial of the specified degree.
C#
public static double LaguerreL(
	int degree,
	double x
)

Parameters

degree  Int32
The degree of the Laguerre polynomial.
x  Double
A real number.

Return Value

Double
The value of the Laguerre polynomial of degree degree evaluated at x.

Exceptions

ArgumentOutOfRangeException

degree is less than zero.

LaguerreL(Int32, Double, Double)

Evaluates the generalized Laguerre polynomial of the specified degree.
C#
public static double LaguerreL(
	int degree,
	double alpha,
	double x
)

Parameters

degree  Int32
The degree of the generalized Laguerre polynomial.
alpha  Double
The parameter of the generalized Laguerre polynomial.
x  Double
A real number.

Return Value

Double
The value of the generalized Laguerre polynomial with parameter alpha of degree degree evaluated at x.

Exceptions

ArgumentOutOfRangeException

degree is less than zero.

See Also