Main Content

cdf

Cumulative distribution function

Description

y = cdf(name,x,A) returns the cumulative distribution function (cdf) for the one-parameter distribution family specified by name and the distribution parameter A, evaluated at the values in x.

example

y = cdf(name,x,A,B) returns the cdf for the two-parameter distribution family specified by name and the distribution parameters A and B, evaluated at the values in x.

y = cdf(name,x,A,B,C) returns the cdf for the three-parameter distribution family specified by name and the distribution parameters A, B, and C, evaluated at the values in x.

y = cdf(name,x,A,B,C,D) returns the cdf for the four-parameter distribution family specified by name and the distribution parameters A, B, C, and D, evaluated at the values in x.

example

y = cdf(pd,x) returns the cdf of the probability distribution object pd, evaluated at the values in x.

y = cdf(___,'upper') returns the complement of the cdf using an algorithm that more accurately computes the extreme upper-tail probabilities. 'upper' can follow any of the input arguments in the previous syntaxes.

Examples

collapse all

Compute the cdf values for a normal distribution by specifying the distribution name 'Normal' and the distribution parameters.

Define the input vector x to contain the values at which to calculate the cdf.

x = [-2,-1,0,1,2];

Compute the cdf values for the normal distribution with the mean μ equal to 1 and the standard deviation σ equal to 5.

mu = 1;
sigma = 5;
y = cdf('Normal',x,mu,sigma)
y = 1×5

    0.2743    0.3446    0.4207    0.5000    0.5793

Each value in y corresponds to a value in the input vector x. For example, at the value x equal to 1, the corresponding cdf value y is equal to 0.5000.

Create a normal distribution object and compute the cdf values of the normal distribution using the object.

Create a normal distribution object with the mean μ equal to 1 and the standard deviation σ equal to 5.

mu = 1;
sigma = 5;
pd = makedist('Normal','mu',mu,'sigma',sigma);

Define the input vector x to contain the values at which to calculate the cdf.

x = [-2,-1,0,1,2];

Compute the cdf values for the normal distribution at the values in x.

y = cdf(pd,x)
y = 1×5

    0.2743    0.3446    0.4207    0.5000    0.5793

Each value in y corresponds to a value in the input vector x. For example, at the value x equal to 1, the corresponding cdf value y is equal to 0.5000.

Create a Poisson distribution object with the rate parameter, λ, equal to 2.

lambda = 2;
pd = makedist('Poisson','lambda',lambda);

Define the input vector x to contain the values at which to calculate the cdf.

x = [0,1,2,3,4];

Compute the cdf values for the Poisson distribution at the values in x.

y = cdf(pd,x)
y = 1×5

    0.1353    0.4060    0.6767    0.8571    0.9473

Each value in y corresponds to a value in the input vector x. For example, at the value x equal to 3, the corresponding cdf value y is equal to 0.8571.

Alternatively, you can compute the same cdf values without creating a probability distribution object. Use the cdf function, and specify a Poisson distribution using the same value for the rate parameter, λ.

y2 = cdf('Poisson',x,lambda)
y2 = 1×5

    0.1353    0.4060    0.6767    0.8571    0.9473

The cdf values are the same as those computed using the probability distribution object.

Create a standard normal distribution object.

pd = makedist('Normal')
pd = 
  NormalDistribution

  Normal distribution
       mu = 0
    sigma = 1

Specify the x values and compute the cdf.

x = -3:.1:3;
p = cdf(pd,x);

Plot the cdf of the standard normal distribution.

plot(x,p)

Figure contains an axes object. The axes object contains an object of type line.

Create three gamma distribution objects. The first uses the default parameter values. The second specifies a = 1 and b = 2. The third specifies a = 2 and b = 1.

pd_gamma = makedist('Gamma')
pd_gamma = 
  GammaDistribution

  Gamma distribution
    a = 1
    b = 1

pd_12 = makedist('Gamma','a',1,'b',2)
pd_12 = 
  GammaDistribution

  Gamma distribution
    a = 1
    b = 2

pd_21 = makedist('Gamma','a',2,'b',1)
pd_21 = 
  GammaDistribution

  Gamma distribution
    a = 2
    b = 1

Specify the x values and compute the cdf for each distribution.

x = 0:.1:5;
cdf_gamma = cdf(pd_gamma,x);
cdf_12 = cdf(pd_12,x);
cdf_21 = cdf(pd_21,x);

Create a plot to visualize how the cdf of the gamma distribution changes when you specify different values for the shape parameters a and b.

figure;
J = plot(x,cdf_gamma);
hold on;
K = plot(x,cdf_12,'r--');
L = plot(x,cdf_21,'k-.');
set(J,'LineWidth',2);
set(K,'LineWidth',2);
legend([J K L],'a = 1, b = 1','a = 1, b = 2','a = 2, b = 1','Location','southeast');
hold off;

Figure contains an axes object. The axes object contains 3 objects of type line. These objects represent a = 1, b = 1, a = 1, b = 2, a = 2, b = 1.

Fit Pareto tails to a t distribution at cumulative probabilities 0.1 and 0.9.

t = trnd(3,100,1);
obj = paretotails(t,0.1,0.9);
[p,q] = boundary(obj)
p = 2×1

    0.1000
    0.9000

q = 2×1

   -1.8487
    2.0766

Compute the cdf at the values in q.

cdf(obj,q)
ans = 2×1

    0.1000
    0.9000

Input Arguments

collapse all

Probability distribution name, specified as one of the probability distribution names in this table.

nameDistributionInput Parameter AInput Parameter BInput Parameter CInput Parameter D
'Beta'Beta Distributiona first shape parameterb second shape parameterN/AN/A
'Binomial'Binomial Distributionn number of trialsp probability of success for each trialN/AN/A
'BirnbaumSaunders'Birnbaum-Saunders Distributionβ scale parameterγ shape parameterN/AN/A
'Burr'Burr Type XII Distributionα scale parameterc first shape parameterk second shape parameterN/A
'Chisquare' or 'chi2'Chi-Square Distributionν degrees of freedomN/AN/AN/A
'Exponential'Exponential Distributionμ meanN/AN/AN/A
'Extreme Value' or 'ev'Extreme Value Distributionμ location parameterσ scale parameterN/AN/A
'F'F Distributionν1 numerator degrees of freedomν2 denominator degrees of freedomN/AN/A
'Gamma'Gamma Distributiona shape parameterb scale parameterN/AN/A
'Generalized Extreme Value' or 'gev'Generalized Extreme Value Distributionk shape parameterσ scale parameterμ location parameterN/A
'Generalized Pareto' or 'gp'Generalized Pareto Distributionk tail index (shape) parameterσ scale parameterμ threshold (location) parameterN/A
'Geometric'Geometric Distributionp probability parameterN/AN/AN/A
'Half Normal' or 'hn'Half-Normal Distributionμ location parameterσ scale parameterN/AN/A
'Hypergeometric' or 'hyge'Hypergeometric Distributionm size of the populationk number of items with the desired characteristic in the populationn number of samples drawnN/A
'InverseGaussian'Inverse Gaussian Distributionμ scale parameterλ shape parameterN/AN/A
'Logistic'Logistic Distributionμ meanσ scale parameterN/AN/A
'LogLogistic'Loglogistic Distributionμ mean of logarithmic valuesσ scale parameter of logarithmic valuesN/AN/A
'LogNormal'Lognormal Distributionμ mean of logarithmic valuesσ standard deviation of logarithmic valuesN/AN/A
'Loguniform'Loguniform Distributiona lower endpoint (minimum)b upper endpoint (maximum)N/AN/A
'Pearson'Pearson Distributionμ mean σ standard deviationγ skewnessκ kurtosis
'Nakagami'Nakagami Distributionμ shape parameterω scale parameterN/AN/A
'Negative Binomial' or 'nbin'Negative Binomial Distributionr number of successesp probability of success in a single trialN/AN/A
'Noncentral F' or 'ncf'Noncentral F Distributionν1 numerator degrees of freedomν2 denominator degrees of freedomδ noncentrality parameterN/A
'Noncentral t' or 'nct'Noncentral t Distributionν degrees of freedomδ noncentrality parameterN/AN/A
'Noncentral Chi-square' or 'ncx2'Noncentral Chi-Square Distributionν degrees of freedomδ noncentrality parameterN/AN/A
'Normal'Normal Distributionμ mean σ standard deviationN/AN/A
'Poisson'Poisson Distributionλ meanN/AN/AN/A
'Rayleigh'Rayleigh Distributionb scale parameterN/AN/AN/A
'Rician'Rician Distributions noncentrality parameterσ scale parameterN/AN/A
'Stable'Stable Distributionα first shape parameterβ second shape parameterγ scale parameterδ location parameter
'T'Student's t Distributionν degrees of freedomN/AN/AN/A
'tLocationScale't Location-Scale Distributionμ location parameterσ scale parameterν shape parameterN/A
'Uniform'Uniform Distribution (Continuous)a lower endpoint (minimum)b upper endpoint (maximum)N/AN/A
'Discrete Uniform' or 'unid'Uniform Distribution (Discrete)n maximum observable valueN/AN/AN/A
'Weibull' or 'wbl'Weibull Distributiona scale parameterb shape parameterN/AN/A

Example: 'Normal'

Values at which to evaluate the cdf, specified as a scalar value or an array of scalar values.

If one or more of the input arguments x, A, B, C, and D are arrays, then the array sizes must be the same. In this case, cdf expands each scalar input into a constant array of the same size as the array inputs. See name for the definitions of A, B, C, and D for each distribution.

Example: [0.1,0.25,0.5,0.75,0.9]

Data Types: single | double

First probability distribution parameter, specified as a scalar value or an array of scalar values.

If one or more of the input arguments x, A, B, C, and D are arrays, then the array sizes must be the same. In this case, cdf expands each scalar input into a constant array of the same size as the array inputs. See name for the definitions of A, B, C, and D for each distribution.

Data Types: single | double

Second probability distribution parameter, specified as a scalar value or an array of scalar values.

If one or more of the input arguments x, A, B, C, and D are arrays, then the array sizes must be the same. In this case, cdf expands each scalar input into a constant array of the same size as the array inputs. See name for the definitions of A, B, C, and D for each distribution.

Data Types: single | double

Third probability distribution parameter, specified as a scalar value or an array of scalar values.

If one or more of the input arguments x, A, B, C, and D are arrays, then the array sizes must be the same. In this case, cdf expands each scalar input into a constant array of the same size as the array inputs. See name for the definitions of A, B, C, and D for each distribution.

Data Types: single | double

Fourth probability distribution parameter, specified as a scalar value or an array of scalar values.

If one or more of the input arguments x, A, B, C, and D are arrays, then the array sizes must be the same. In this case, cdf expands each scalar input into a constant array of the same size as the array inputs. See name for the definitions of A, B, C, and D for each distribution.

Data Types: single | double

Probability distribution, specified as one of the probability distribution objects in this table.

Distribution ObjectFunction or App to Create Probability Distribution Object
BetaDistributionmakedist, fitdist, Distribution Fitter
BinomialDistributionmakedist, fitdist, Distribution Fitter
BirnbaumSaundersDistributionmakedist, fitdist, Distribution Fitter
BurrDistributionmakedist, fitdist, Distribution Fitter
ExponentialDistributionmakedist, fitdist, Distribution Fitter
ExtremeValueDistributionmakedist, fitdist, Distribution Fitter
GammaDistributionmakedist, fitdist, Distribution Fitter
GeneralizedExtremeValueDistributionmakedist, fitdist, Distribution Fitter
GeneralizedParetoDistributionmakedist, fitdist, Distribution Fitter
HalfNormalDistributionmakedist, fitdist, Distribution Fitter
InverseGaussianDistributionmakedist, fitdist, Distribution Fitter
KernelDistributionfitdist, Distribution Fitter
LogisticDistributionmakedist, fitdist, Distribution Fitter
LoglogisticDistributionmakedist, fitdist, Distribution Fitter
LognormalDistributionmakedist, fitdist, Distribution Fitter
LoguniformDistributionmakedist
MultinomialDistributionmakedist
NakagamiDistributionmakedist, fitdist, Distribution Fitter
NegativeBinomialDistributionmakedist, fitdist, Distribution Fitter
NormalDistributionmakedist, fitdist, Distribution Fitter
Piecewise distribution with generalized Pareto distributions in the tailsparetotails
PiecewiseLinearDistributionmakedist
PoissonDistributionmakedist, fitdist, Distribution Fitter
RayleighDistributionmakedist, fitdist, Distribution Fitter
RicianDistributionmakedist, fitdist, Distribution Fitter
StableDistributionmakedist, fitdist, Distribution Fitter
tLocationScaleDistributionmakedist, fitdist, Distribution Fitter
TriangularDistributionmakedist
UniformDistributionmakedist
WeibullDistributionmakedist, fitdist, Distribution Fitter

Output Arguments

collapse all

cdf values, returned as a scalar value or an array of scalar values. y is the same size as x after any necessary scalar expansion. Each element in y is the cdf value of the distribution, specified by the corresponding elements in the distribution parameters (A, B, C, and D) or the probability distribution object (pd), evaluated at the corresponding element in x.

Alternative Functionality

  • cdf is a generic function that accepts either a distribution by its name name or a probability distribution object pd. It is faster to use a distribution-specific function, such as normcdf for the normal distribution and binocdf for the binomial distribution. For a list of distribution-specific functions, see Supported Distributions.

  • Use the Probability Distribution Function app to create an interactive plot of the cumulative distribution function (cdf) or probability density function (pdf) for a probability distribution.

Extended Capabilities

Version History

Introduced before R2006a

expand all