Generates log-normal distribution cumulative density function values at specified locations. |
||
Syntax |
CDF = LogNormCDF(Points, Mean, Std) |
|
Arguments |
Name |
Description |
Points |
A scalar, vector. or matrix of positive data points at which the cumulative density function is to be evaluated. |
|
Mean |
Mean of the log of the distribution. A scalar. |
|
Std |
Standard deviation of the log of the distribution. A positive scalar. |
|
Outputs |
Name |
Description |
CDF |
A scalar, vector, or matrix of the cumulative density function values at the given points. The same size as Points. |
|
Example |
Find the log-normal cumulative density function at points 1, 4, and 8 with parameters Mu = 2 and sigma = 5. |
|
Syntax |
||
cdf = LogNormCDF([1,4,8],2,5) |
||
Results |
||
cdf = 0.34458 0.45116 0.50634 |
||
See Also: |