Special.Hermite He Sequence 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
Hermite | Evaluates a sequence of Chebyshev-Hermite polynomials of increasing degree and their first derivatives, returning the results in the specified spans. |
Hermite | Evaluates a sequence of Chebyshev-Hermite polynomials of increasing degree starting at the specified degree and their first derivatives, returning the results in the specified spans. |
HermiteHeSequenceWithDerivative(Double, Span<Double>, Span<Double>)
Evaluates a sequence of Chebyshev-Hermite polynomials of increasing degree
and their first derivatives, returning the results in the specified spans.
public static void HermiteHeSequenceWithDerivative(
double x,
Span<double> values,
Span<double> derivatives
)
Parameters
Exceptions
Argument | values and derivatives must have the same length. |
HermiteHeSequenceWithDerivative(Int32, Double, Span<Double>, Span<Double>)
Evaluates a sequence of Chebyshev-Hermite polynomials of increasing degree
starting at the specified degree and their first derivatives, returning the results in the specified spans.
public static void HermiteHeSequenceWithDerivative(
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. |