evcdf
Extreme value cumulative distribution function
Syntax
Description
returns
the cumulative distribution function (cdf) of the type 1 extreme value distribution (also
known as the Gumbel distribution) with a location parameter equal to 0 and a scale
parameter equal to 1, evaluated at the values in p = evcdf(x)x. The software
returns the cdf for the minimum case. To model the maximum case, call
evcdf using the negative of the original values in
x, and specify the last input argument as
"upper". For more information, see Extreme Value Distribution.
[___] = evcdf(___,"upper") returns the
complement of the cdf, evaluated at the values in x, using an algorithm
that more accurately computes the extreme upper-tail probabilities.
"upper" can follow any of the input argument combinations in the
previous syntaxes.
Examples
Input Arguments
Output Arguments
More About
Algorithms
The function computes confidence bounds for p using a normal
approximation to the distribution of the estimate
and then transforming those bounds to the scale of the output p. The
computed bounds give approximately the intended confidence level when you estimate
mu, sigma, and pcov from large
samples. When you use smaller samples, other methods of computing the confidence bounds might
be more accurate.
Alternative Functionality
evcdfis a function specific to the extreme value distribution. Statistics and Machine Learning Toolbox™ also offers the generic functioncdf, which supports various probability distributions. To usecdf, create anExtremeValueDistributionprobability distribution object and pass the object as an input argument or specify the probability distribution name and its parameters. Note that the distribution-specific functionevcdfis faster than the generic functioncdf.Use the Probability Distribution Function Tool to create an interactive plot of the cumulative distribution function (cdf) or probability density function (pdf) for a probability distribution.
References
[1] Crowder, Martin J., ed. Statistical Analysis of Reliability Data. Reprinted. London: Chapman & Hall, 1995.
[2] Lawless, J. F. Statistical Models and Methods for Lifetime Data. Hoboken, NJ: Wiley-Interscience, 2002.
[3] Meeker, W. Q., and L. A. Escobar. Statistical Methods for Reliability Data. Hoboken, NJ: John Wiley & Sons, Inc., 1998.
Extended Capabilities
Version History
Introduced before R2006a
