Skip to content

normalPDF

Fabian Kindermann edited this page Apr 1, 2021 · 10 revisions
function normalPDF(x, mu, sigma)

Description:

Calculates the probability density function
$$
f(x) = frac{1}{sqrt{2pisigma^2}} cdot expleft[-frac{1}{2}cdot left(frac{x-mu}{sigma}right)^2right]
$$
of the normal distribution with mean (mu) and variance (sigma^2).

Input arguments:

  • real*8 :: x
    The point where to evaluate the probability density function of the normal distribution.

Optional arguments:

  • real*8 :: mu
    The mean of the distribution. If not present, the function uses mu = 0.
  • real*8 :: sigma
    The variance (sigma^2) of the distribution. If not present, the function uses sigma = 1. Note that this input variable needs to be strictly greater than zero.

Return Value:

  • real*8 :: normalPDF
    The value of the density at x.

References

  • For further reading refer to:
    • Toral, R. & Colet, P. (2014). Stochastic Numerical Methods: An Introduction for Students and Scientists. Weinheim: Wiley.
  • This routine is used in the following programs:
    • prog02_15.f90
Clone this wiki locally