| Summary | Included libraries | Package variables | Synopsis | Description | General documentation | Methods |
| Summary | Top |
| Clair::RandomDistribution::LogNormal |
| Package variables | Top |
| No package variables defined. |
| Included modules | Top |
| Carp |
| Clair::RandomDistribution::RandomDistributionBase |
| constant sqrt_twopi => sqrt ( 8 * atan2 ( 1 , 1 ) ) |
| Inherit | Top |
| Clair::RandomDistribution::RandomDistributionBase |
| Synopsis | Top |
| my $z = Clair::RandomDistribution::LogNormal->new(mean => 1.1, std_dev => 0.3, dist_size => 20); |
| Description | Top |
| Concrete class representing a LogNormal distributions. |
| Methods | Top |
| dist_function | Description | Code |
| new | No description | Code |
| dist_function | code | next | Top |
| Takes a random variable |
| dist_function | description | prev | next | Top |
sub dist_function
{ my $self = shift;
return (exp -((log ($_[0]) - $self->{mean}) ** 2) /} |
| new | description | prev | next | Top |
sub new
{my $class = shift; my %params = @_; # We require a mean and a variance} |