Sobol Sequence Generator Constructor
Constructs a new Sobol sequence generator.
Definition
Namespace: Extreme.Mathematics.Random
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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. |