statistical. logNorm

new logNorm()

Methods

(static) dist(x, mean, standard_dev, cumulative)

Returns the cumulative lognormal distribution.

Parameters:
NameTypeDescription
xnumber

The value at which to evaluate the function.

meannumber

The mean of ln(x).

standard_devnumber

The standard deviation of ln(x).

cumulativeboolean

A logical value that determines the form of the function. If cumulative is TRUE, LOGNORM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function.

Returns:

the cumulative lognormal distribution or an error if the arguments are incorrect.

(static) inv(probability, mean, standard_dev)

Returns the inverse of the lognormal cumulative distribution.

Parameters:
NameTypeDescription
probabilitynumber

A probability associated with the lognormal distribution.

meannumber

The mean of ln(x).

standard_devnumber

The standard deviation of ln(x).

Returns:

the inverse of the lognormal cumulative distribution or an error if the arguments are incorrect.