|
VectorSample Method (UInt64)
|
Returns a vector containing indices (0, 1, 2, ..., n - 1) in random
order. The vector grows up to to size, but does not
include size among its values.
Namespace:
Accord.Math
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static ulong[] Sample(
ulong size
)
Public Shared Function Sample (
size As ULong
) As ULong()
Request Example
View SourceParameters
- size
- Type: SystemUInt64
The size of the sample vector to be generated.
Return Value
Type:
UInt64Examples var a = Vector.Sample(3);
var b = Vector.Sample(10);
foreach (var i in Vector.Sample(5))
{
}
See Also