Returns the value of the exponential distribution function with a specified lambda at a specified value.
Sample Usage
EXPONDIST(0.2,10,FALSE)
EXPONDIST(A2,A3,TRUE)
Syntax
EXPONDIST(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
EXPONDIST(0.2,10,FALSE) returns 1.3533, the probability exponential distribution function.
EXPONDIST(A2,A3,TRUE) returns the cumulative exponential distribution function.