utils/generate-distributions.pl
author Duy Nguyen <duy@soe.ucsc.edu>
Thu, 13 Aug 2009 08:45:47 +0200
changeset 4703 e1259e2fdaad
parent 191 411f29b214f0
permissions -rwxr-xr-x
add an implementation of the minstrel rate control algorithm

#!/usr/bin/env perl

use Math::Random qw(:all);

@values = random_uniform (10000, 0, 10000000);

foreach $value (@values) {
    print $value . "\n";
}