Evaluates a sequence of generalized Laguerre polynomials of increasing degree starting at the specified degree
and returns the result in the specified vector.
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,
Vector<double> result
)
Public Shared Function LaguerreLSequence (
startDegree As Integer,
length As Integer,
lambda As Double,
x As Double,
result As Vector(Of Double)
) As Vector(Of Double)
public:
static Vector<double>^ LaguerreLSequence(
int startDegree,
int length,
double lambda,
double x,
Vector<double>^ result
)
static member LaguerreLSequence :
startDegree : int *
length : int *
lambda : float *
x : float *
result : Vector<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. - result
- Type: Extreme.MathematicsVectorDouble
The vector that is to hold the result. May be .
Return Value
Type:
VectorDoubleThe vector
result, which contains
length values of
the generalized Laguerre polynomial with parameter
lambda and of increasing orders
starting from
startDegree evaluated at
x.
Reference