lognorm_dist
Log-normal distribution PDF or CDF.
Syntax
Section titled “Syntax”v = lognorm_dist(x, mean, standard_dev, cumulative)Description
Section titled “Description”Distribution where ln(x) is normally distributed with the given mean and standard deviation. With cumulative = true, returns CDF; with false, PDF.
Example
Section titled “Example”lognorm_dist(2, 0, 1, true) % ≈ 0.756See also
Section titled “See also”lognorm_inv— Inverse log-normal CDF.norm_dist— Normal-distribution PDF or CDF.