Special.BernoulliBSequence Method

Evaluates a sequence of Bernoulli polynomials

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static void BernoulliBSequence(
	int startDegree,
	int length,
	double x,
	Vector<double> result
)

Parameters

startDegree  Int32
The degree of the first polynomial in the sequence.
length  Int32
The number of polynomials in the sequence.
x  Double
The value at which to evaluate the polynomials.
result  Vector<Double>
The vector that is to hold the result.

Exceptions

ArgumentNullException

result is null.

ArgumentOutOfRangeException

startDegree is less than zero.

-or-

length is less than zero.

See Also