Rice distribution¶
Parameter names and formulas are from the wikipedia article:
SciPy has a different parametrization:
mpsci SciPy
----------------- -----------------------------------------------------
pdf(x, nu, sigma) scipy.stats.rice.pdf(x, nu/sigma, loc=0, scale=sigma)
- mpsci.distributions.rice.cdf(x, nu, sigma)¶
CDF for the Rice distribution.
- mpsci.distributions.rice.logpdf(x, nu, sigma)¶
Logarithm of the PDF for the Rice distribution.
- mpsci.distributions.rice.mean(nu, sigma)¶
Mean of the Rice distribution.
- mpsci.distributions.rice.noncentral_moment(n, nu, sigma)¶
Noncentral moment of the Rice distribution.
The value is also known as the raw moment.
- mpsci.distributions.rice.pdf(x, nu, sigma)¶
PDF for the Rice distribution.
- mpsci.distributions.rice.sf(x, nu, sigma)¶
Survival function for the Rice distribution.
- mpsci.distributions.rice.support(nu, sigma)¶
Support of the Rice distribution.
- mpsci.distributions.rice.var(nu, sigma)¶
Variance of the Rice distribution.