md | R Documentation |
Density, distribution function, quantile function and random generation for
Maxwell distribution with parameter scale
.
dmd(x, theta = 1, log = FALSE)
pmd(q, theta = 1, lower.tail = TRUE, log.p = FALSE)
qmd(p, theta = 1, lower.tail = TRUE)
rmd(n, theta = 1)
x , q |
vector of quantiles. |
theta |
a scale parameter. |
log , log.p |
logical; if TRUE, probabilities p are given as log(p). |
lower.tail |
logical; if TRUE (default), probabilities are
|
p |
vector of probabilities. |
n |
number of observations. If |
Maxwell distribution with scale
parameter \theta
,
has density
f\left( x\right) =\frac{4}{\sqrt{\pi }}
\frac{1}{\theta ^{3/2}}x^{2}e^{-x^{2}/\theta },
where
0\leq x<\infty ,~~\theta >0.
dmd
gives the density, pmd
gives the distribution
function, qmd
gives the quantile function and rmd
generates
random deviates.
Krishna, H., Vivekanand ve Kumar, K., 2015, Estimation in Maxwell distribution with randomly censored data, Journal of statistical computation and simulation, 85 (17), 3560-3578.
library(new.dist)
dmd(1,theta=2)
pmd(1,theta=2)
qmd(.4,theta=5)
rmd(10,theta=1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.