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