LOGNORMAL_CDF Purpose
Evaluate the cumulative distribution function of a lognormal
distribution.
The lognormal distribution PDF is defined as
P(x) = [sqrt(2 * pi) * sigma * x]^(-1) *
exp[ -ln(x / a)^2 / (2 * sigma)^2]
Inputs
x: The abcissa values at which to compute the CDF
a: The median of the distribution (see formula above)
sigma: The width of the distribution (see formula above)
Keyword Parameters
param: An optional 2-element array, listing [a, sigma]. This is
provided for convenience, as some functions (e.g., ksone in
the IDL Astronomy user's library) prefer to pass
parameters this way.
Outputs
EDF(x)
Modification History
July 2011: Written by Chris Beaumont