Evaluates a series of generalized Laguerre polynomials.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static double LaguerreLSeries(
Vector<double> coefficients,
double lambda,
double x
)
Public Shared Function LaguerreLSeries (
coefficients As Vector(Of Double),
lambda As Double,
x As Double
) As Double
public:
static double LaguerreLSeries(
Vector<double>^ coefficients,
double lambda,
double x
)
static member LaguerreLSeries :
coefficients : Vector<float> *
lambda : float *
x : float -> float
Parameters
- coefficients
- Type: Extreme.MathematicsVectorDouble
A vector containing the coefficients. - lambda
- Type: SystemDouble
The parameter of the generalized Laguerre polynomials. - x
- Type: SystemDouble
The value for which to evaluate the series.
Return Value
Type:
DoubleThe sum of the Laguerre polynomials at
x multiplied by the corresponding element of
coefficients.
Reference