add small perl utility to generate static sample distributions
authorMathieu Lacage <mathieu.lacage@sophia.inria.fr>
Tue, 12 Dec 2006 14:02:07 +0100
changeset 191 411f29b214f0
parent 190 916cd1bfed82
child 192 cdb44e98954c
add small perl utility to generate static sample distributions
utils/generate-distributions.pl
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/utils/generate-distributions.pl	Tue Dec 12 14:02:07 2006 +0100
@@ -0,0 +1,9 @@
+#!/usr/bin/env perl
+
+use Math::Random qw(:all);
+
+@values = random_uniform (10000, 0, 10000000);
+
+foreach $value (@values) {
+    print $value . "\n";
+}