EXPONDIST

EXPONDIST probability density or cumulative distribution function of the exponential distribution

Synopsis

EXPONDIST(x,y,cumulative)

Arguments

x: number

y: scale parameter

cumulative: whether to evaluate the density function or the cumulative distribution function

Description

If cumulative is false it will return: y * exp (-y*x),otherwise it will return 1 - exp (-y*x).

Note

If x < 0 or y <= 0 this will return an error.

Microsoft Excel Compatibility

This function is Excel compatible.

See also

POISSON.