Generates exponential distribution inverse cumulative density function values at specified locations. |
||
Syntax |
PDF = ExpPDF(Points, Mu) |
|
Arguments |
Name |
Description |
Points |
A scalar, vector, or matrix of positive data points at which the density function is to be evaluated. The output is 0 for negative values. |
|
Mu |
Mean of the distribution. A positive scalar. |
|
Outputs |
Name |
Description |
A scalar, vector, or matrix of the density function values at the given points. The same size as Points. |
||
Example |
Find the exponential probability density function at points 1, 4, and 8 with parameter Mu = 5. |
|
Syntax |
||
pdf = ExpPDF([1,4,8],5) |
||
Results |
||
pdf = 0.16375 0.089866 0.040379 |
||
See Also: |