File: erlang.pl

package info (click to toggle)
libmath-random-mt-auto-perl 6.23-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 576 kB
  • sloc: perl: 1,068; makefile: 3
file content (54 lines) | stat: -rwxr-xr-x 1,111 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/perl

# Produces a graph of random numbers from an Erlang distribution.

# Usage:  erlang.pl [ORDER [COUNT]]
#         ORDER defaults to 3
#         COUNT defaults to 1 million

use strict;
use warnings;

$| = 1;

use Math::Random::MT::Auto qw(erlang);

MAIN:
{
    my $order = (@ARGV)     ? $ARGV[0] : 3;
    my $count = (@ARGV > 1) ? $ARGV[1] : 1000000;

    my %erlang;

    # Get random numbers and put them in bins
    print("Generating $count Erlang random numbers.  Please wait...");
    for (1 .. $count) {
        my $x = int(erlang($order, 40/($order+2)));

        # Make sure the tail doesn't overflow
        if ($x > 80) {
            $x = 80;
        }

        $erlang{$x}++;
    }

    # Find the max bin size for scaling the output
    my $max = 0;
    while (my $key = each(%erlang)) {
        if ($max < $erlang{$key}) {
            $max = $erlang{$key};
        }
    }

    # Output the graph
    print("\n");
    for my $key (sort { $a <=> $b } (keys(%erlang))) {
        my $len = int(79.0 * $erlang{$key}/$max);
        print(':', '*' x $len, "\n");
    }
}

exit(0);

# EOF