Statistics-GammaDistribution

 view release on metacpan or  search on metacpan

lib/Statistics/GammaDistribution.pm  view on Meta::CPAN

package Statistics::GammaDistribution;
use strict;
use warnings;
use vars qw ( $VERSION );
$VERSION = 0.02;

sub PI(){ 3.14159265358979323846264338328; }
sub E() { 2.71828182845904523536028747135; }

sub new
{
    my ($caller,%args) = @_;
    my $class = ref($caller) || $caller;
    my $self = bless {}, $class;
    $self->_init(%args);
    return $self;
}



( run in 1.844 second using v1.01-cache-2.11-cpan-524268b4103 )