Skip to content

Commit d7fd756

Browse files
committed
add icdf equation for Normal distribution
1 parent 4f1a6df commit d7fd756

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

numpyro/distributions/continuous.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2750,6 +2750,9 @@ def log_cdf(self, value: ArrayLike) -> ArrayLike:
27502750
def icdf(self, q: ArrayLike) -> ArrayLike:
27512751
r"""Inverse cumulative distribution function (Quantile function).
27522752
2753+
.. math::
2754+
F^{-1}(q; \mu, \sigma) = \mu + \sigma\,\Phi^{-1}(q)
2755+
27532756
:param q: Probability value in :math:`[0,1]`.
27542757
:type q: ArrayLike
27552758
"""

0 commit comments

Comments
 (0)