This is documentation for an old release of SciPy (version 1.8.1). Read this page in the documentation of the latest stable release (version 1.15.1).
Generalized Normal Distribution#
This distribution is also known as the exponential power distribution. It has a single shape parameter \(\beta>0\). It reduces to a number of common distributions.
Functions#
\(\gamma\) is the lower incomplete gamma function. \(\gamma\left(s, x\right) = \int_0^x t^{s-1} e^{-t} dt\).
Moments#
Special Cases#
Laplace distribution (\(\beta = 1\))
Normal distribution with \(\mu_2 = 1/2\) (\(\beta = 2\))
Uniform distribution over the interval \([-1, 1]\) (\(\beta \rightarrow \infty\))
Sources#
https://en.wikipedia.org/wiki/Generalized_normal_distribution#Version_1
https://en.wikipedia.org/wiki/Incomplete_gamma_function#Lower_incomplete_Gamma_function
Implementation: scipy.stats.gennorm