Special.LaguerreLSequence(Int32, Double, Double) Method

Evaluates a sequence of generalized Laguerre polynomials of increasing degree

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Vector<double> LaguerreLSequence(
	int length,
	double lambda,
	double x
)

Parameters

length  Int32
The length of the sequence.
lambda  Double
The parameter of the generalized Laguerre polynomials.
x  Double
A real number.

Return Value

Vector<Double>
A vector that contains length values of the generalized Laguerre polynomial with parameter lambda and of increasing orders starting from zero evaluated at x.

Exceptions

ArgumentOutOfRangeException

length is less than zero.

See Also