Evaluates a sequence of generalized Laguerre polynomials of increasing degree starting at the specified degree.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Vector<double> LaguerreLSequence(
int startDegree,
int length,
double lambda,
double x
)
Public Shared Function LaguerreLSequence (
startDegree As Integer,
length As Integer,
lambda As Double,
x As Double
) As Vector(Of Double)
public:
static Vector<double>^ LaguerreLSequence(
int startDegree,
int length,
double lambda,
double x
)
static member LaguerreLSequence :
startDegree : int *
length : int *
lambda : float *
x : float -> Vector<float>
Parameters
- startDegree
- Type: SystemInt32
An integer that specifies the first degree in the sequence. - 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
startDegree evaluated at
x.
Reference