Evaluates a sequence of generalized Laguerre polynomials of increasing degree
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Vector<double> LaguerreLSequence(
int length,
double lambda,
double x
)
Public Shared Function LaguerreLSequence (
length As Integer,
lambda As Double,
x As Double
) As Vector(Of Double)
public:
static Vector<double>^ LaguerreLSequence(
int length,
double lambda,
double x
)
static member LaguerreLSequence :
length : int *
lambda : float *
x : float -> Vector<float>
Parameters
- length
- Type: SystemInt32
The length of the sequence. - lambda
- Type: SystemDouble
The parameter of the generalized Laguerre polynomials. - x
- Type: SystemDouble
A real number.
Return Value
Type:
VectorDoubleA vector that contains
length values of
the generalized Laguerre polynomial with parameter
lambda and of increasing orders
starting from zero evaluated at
x.
Reference