Returns the value of the exponential distribution function with a specified lambda at a specified value.
Sample Usage
EXPON.DIST(0.2,10,FALSE)
EXPON.DIST(A2,A3,TRUE)
Syntax
EXPON.DIST(x, lambda, cumulative)
- x - The input to the exponential distribution function.
- lambda - The lambda to specify the exponential distribution function.
- cumulative - A logical value that determines the form of the function.
Examples
EXPON.DIST(0.2,10,FALSE) returns 1.3533, the probability exponential distribution function.
EXPON.DIST(A2,A3,TRUE) returns the cumulative exponential distribution function.