Evaluates a series of Laguerre polynomials up to the specified degree.
Namespace: Extreme.MathematicsAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public static double LaguerreLSeries(
Vector coefficients,
double x,
int maxDegree
)
Public Shared Function LaguerreLSeries (
coefficients As Vector,
x As Double,
maxDegree As Integer
) As Double
public:
static double LaguerreLSeries(
Vector^ coefficients,
double x,
int maxDegree
)
static member LaguerreLSeries :
coefficients : Vector *
x : float *
maxDegree : int -> float
Parameters
- coefficients
- Type: Extreme.MathematicsVector
A vector containing the coefficients. - x
- Type: SystemDouble
The value for which to evaluate the series. - maxDegree
- Type: SystemInt32
The degree of the highest order Chebyshev polynomial to include in the series.
Return Value
Type:
DoubleThe sum of the Laguerre polynomials up to degree
maxDegree evaluated at
x
and multiplied by the corresponding element of
coefficients.
If maxDegree is less than zero, then zero is returned.
Numerical Libraries
Supported in: 5.x, 4.x
Reference