Special.Legendre PSequence 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
Legendre | Evaluates a sequence of Legendre polynomials of increasing degree and their first derivatives, returning the results in the specified spans. |
Legendre | Evaluates a sequence of Legendre polynomials of increasing degree starting at the specified degree and their first derivatives, returning the results in the specified spans. |
LegendrePSequenceWithDerivative(Double, Span<Double>, Span<Double>)
Evaluates a sequence of Legendre polynomials of increasing degree
and their first derivatives, returning the results in the specified spans.
public static void LegendrePSequenceWithDerivative(
double x,
Span<double> values,
Span<double> derivatives
)
Parameters
Exceptions
Argument | values and derivatives must have the same length. |
LegendrePSequenceWithDerivative(Int32, Double, Span<Double>, Span<Double>)
Evaluates a sequence of Legendre polynomials of increasing degree
starting at the specified degree and their first derivatives, returning the results in the specified spans.
public static void LegendrePSequenceWithDerivative(
int startDegree,
double x,
Span<double> values,
Span<double> derivatives
)
Parameters
Exceptions
Argument | startDegree is less than zero. |
Argument | values and derivatives must have the same length. |