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