Defines a normal distribution.
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
real(kind=real64), | public | :: | mean_value |
The mean value of the distribution. |
|||
real(kind=real64), | public | :: | standard_deviation |
The standard deviation of the distribution. |
Computes the cumulative distribution function.
The CDF for a log-normal distribution is given as F(x)=12(1+erf(lnx−μσ√2))
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(log_normal_distribution), | intent(in) | :: | this |
The log_normal_distribution object. |
||
real(kind=real64), | intent(in) | :: | x |
The value at which to evaluate the function. |
The value of the function.
Gets the defined range for the distribution.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(log_normal_distribution), | intent(in) | :: | this |
The log_normal_distribution object. |
The defined range of the probability distributions [0, infinity). As using a value of infinity may cause issue, this routine returns huge(0.0d0) instead.
Computes the mean of the distribution
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(log_normal_distribution), | intent(in) | :: | this |
The log_normal distribution object. |
The mean
Computes the median of the distribution
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(log_normal_distribution), | intent(in) | :: | this |
The log_normal distribution object. |
The median
Computes the mode of the distribution
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(log_normal_distribution), | intent(in) | :: | this |
The log_normal distribution object. |
The mode
Computes the probability density function.
The PDF for a log-normal distribution is given as f(x)=1xσ√2πexp(−(lnx−μ)22σ2)
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(log_normal_distribution), | intent(in) | :: | this |
The log_normal_distribution object. |
||
real(kind=real64), | intent(in) | :: | x |
The value at which to evaluate the function. |
The value of the function.
Recenters the distribution about the supplied value.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(log_normal_distribution), | intent(inout) | :: | this |
The log_normal_distribution object. |
||
real(kind=real64), | intent(in) | :: | x |
The value about which to recenter. |
Computes the standardized variable for the distribution.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(distribution), | intent(in) | :: | this |
The distribution object. |
||
real(kind=real64), | intent(in) | :: | x |
The value of interest. |
The result.
Computes the variance of the distribution
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(log_normal_distribution), | intent(in) | :: | this |
The log_normal distribution object. |
The variance