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