SobolSequenceGenerator Constructor

Constructs a new Sobol sequence generator.

Definition

Namespace: Numerics.NET.Random
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public SobolSequenceGenerator(
	int dimension,
	int length
)

Parameters

dimension  Int32
The dimension of the vectors in the sequence.
length  Int32
The length of the sequence.

Exceptions

ArgumentOutOfRangeException

dimension is less than or equal to zero or greater than 40.

-or-

length is less than or equal to zero.

See Also