Special.Laguerre LSequence With Derivative Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
Overload List
Laguerre | Evaluates a sequence of generalized Laguerre polynomials of increasing degree and their first derivatives, returning the results in the specified spans. |
Laguerre | Evaluates a sequence of generalized Laguerre polynomials of increasing degree starting at the specified degree and their first derivatives, returning the results in the specified spans. |
LaguerreLSequenceWithDerivative(Double, Double, Span<Double>, Span<Double>)
Evaluates a sequence of generalized Laguerre polynomials of increasing degree
and their first derivatives, returning the results in the specified spans.
public static void LaguerreLSequenceWithDerivative(
double alpha,
double x,
Span<double> values,
Span<double> derivatives
)
Parameters
Exceptions
Argument | values and derivatives must have the same length. |
LaguerreLSequenceWithDerivative(Int32, Double, Double, Span<Double>, Span<Double>)
Evaluates a sequence of generalized Laguerre polynomials of increasing degree
starting at the specified degree and their first derivatives, returning the results in the specified spans.
public static void LaguerreLSequenceWithDerivative(
int startDegree,
double alpha,
double x,
Span<double> values,
Span<double> derivatives
)
Parameters
- startDegree Int32
- An integer that specifies the first degree in the sequence.
- alpha Double
- The parameter of the generalized Laguerre polynomials.
- x Double
- A real number.
- values Span<Double>
- The span that is to hold the polynomial values.
- derivatives Span<Double>
- The span that is to hold the derivative values.
Exceptions
Argument | startDegree is less than zero. |
Argument | values and derivatives must have the same length. |