public class FloatRandomSamplingAssistant extends PersistentObject
FloatRandomSampler,
Serialized Form| Constructor and Description |
|---|
FloatRandomSamplingAssistant(long n,
long N,
FloatRandomEngine randomGenerator)
Constructs a random sampler that samples n random elements from
an input sequence of N elements.
|
| Modifier and Type | Method and Description |
|---|---|
Object |
clone()
Returns a deep copy of the receiver.
|
FloatRandomEngine |
getRandomGenerator()
Returns the used random generator.
|
static void |
main(String[] args)
Tests random sampling.
|
static int[] |
sampleArray(int n,
int[] elements)
Just shows how this class can be used; samples n elements from and int[]
array.
|
boolean |
sampleNextElement()
Returns whether the next element of the input sequence shall be sampled
(picked) or not.
|
static void |
test(long n,
long N)
Tests the methods of this class.
|
static void |
testArraySampling(int n,
int N)
Tests the methods of this class.
|
public FloatRandomSamplingAssistant(long n,
long N,
FloatRandomEngine randomGenerator)
n - the total number of elements to choose (must be >= 0).N - number of elements to choose from (must be >= n).randomGenerator - a random number generator. Set this parameter to null
to use the default random number generator.public Object clone()
clone in class PersistentObjectpublic FloatRandomEngine getRandomGenerator()
public static void main(String[] args)
public static int[] sampleArray(int n,
int[] elements)
public boolean sampleNextElement()
public static void test(long n,
long N)
public static void testArraySampling(int n,
int N)
Jump to the Parallel Colt Homepage