Namespace: Extreme.Statistics.RandomAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public HaltonSequence(
int dimension,
int capacity,
bool returnNewInstance
)
Public Sub New (
dimension As Integer,
capacity As Integer,
returnNewInstance As Boolean
)
public:
HaltonSequence(
int dimension,
int capacity,
bool returnNewInstance
)
new :
dimension : int *
capacity : int *
returnNewInstance : bool -> HaltonSequence
Parameters
- dimension
- Type: SystemInt32
The dimension of the vectors in the sequence. - capacity
- Type: SystemInt32
The largest number of vectors that will be requested from this sequence. - returnNewInstance
- Type: SystemBoolean
A Boolean value that specifies whether every vector
in the sequence should be returned as a new instance.
Exception | Condition |
---|
ArgumentOutOfRangeException | dimension is less than or equal to zero or greater than 40.
-or- capacity is less than or equal to zero. |
The dimension must be at least 1, and must be less than or equal to 40.
capacity specifies the number of points that will be requested.
When enumerating the sequence using IEnumerator methods and properties, or in a
foreach loop, capacity equals the number of points returned.
Numerical Libraries
Supported in: 5.x, 4.x
Reference