Distributions#
Distribution classes and associated methods.
The classes in this module describe statistical distributions. Most of them are non-normalized having implications for quantifying the evidence term of Bayes’ rule.
All of the classes inherit from _AbstractDistribution
; a base class outlining
required methods and their signatures (required in- and outputs).
Note
A tutorial on implementing your own distributions can be found at Creating your own inverse problem.
Available classes within Distributions:
Abstract base class for distributions. |
|
Standard normal distribution in 1 dimension. |
|
Normal distribution in model space. |
|
Laplace distribution in model space. |
|
Uniform bounded or unbouded distribution in model space. |
|
Likelihood model based on a linear forward model given as \(G \mathbf{m} = \mathbf{d}\) coupled with Gaussian observational errors. |
|
Distribution distribution combined from multiple unconditional distributions. |
|
Distribution generated by summing the characteristic functions of two other distributions. |
|
A class to apply (the unnormalized) Bayes' rule to two or more distributions. |
|
Himmelblau's 2-dimensional function. |
|
Earthquake source location in 2D using a single velocity for the subsurface. |
|
Earthquake source location in 3D using a single velocity for the subsurface. |