|   | VectorSample Method (Int32, Decimal) | 
        
         
              Returns a vector of the specified sampleSize containing 
              non-repeating indices in the range [0, populationSize) in random order.
            
 
    Namespace: 
   Accord.Math
    Assembly:
   Accord.Math (in Accord.Math.dll) Version: 3.8.0
 Syntax
Syntaxpublic static decimal[] Sample(
	int sampleSize,
	decimal populationSize
)
Public Shared Function Sample ( 
	sampleSize As Integer,
	populationSize As Decimal
) As Decimal()
Parameters
- sampleSize
- Type: SystemInt32
 The size of the sample vector to be generated.
- populationSize
- Type: SystemDecimal
 The non-inclusive maximum number an index can have.
Return Value
Type: 
Decimal Remarks
Remarks
              In other words, this return a sample of size k from a population
              of size N, where k is the parameter sampleSize
              and N is the parameter populationSize.
            
 Examples
Examplesvar a = Vector.Sample(3, 10);  
var b = Vector.Sample(10, 10); 
foreach (var i in Vector.Sample(5, 6))
{
   
} See Also
See Also