|
VectorSample Method (UInt16)
|
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 ushort[] Sample(
ushort size
)
Public Shared Function Sample (
size As UShort
) As UShort()
Request Example
View SourceParameters
- size
- Type: SystemUInt16
The size of the sample vector to be generated.
Return Value
Type:
UInt16Examples var a = Vector.Sample(3);
var b = Vector.Sample(10);
foreach (var i in Vector.Sample(5))
{
}
See Also