statistical. norm

new norm()

Methods

(static) dist(x, mean, standard_dev, cumulative) → {number}

Returns the normal cumulative distribution.

Parameters:
NameTypeDescription
xnumber

The value for which you want the distribution.

meannumber

The arithmetic mean of the distribution.

standard_devnumber

The standard deviation of the distribution.

cumulativeboolean

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

Returns:

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

Type: 
number

(static) inv(probability, mean, standard_dev) → {number}

Returns the inverse of the normal cumulative distribution.

Parameters:
NameTypeDescription
probabilitynumber

A probability corresponding to the normal distribution.

meannumber

The arithmetic mean of the distribution.

standard_devnumber

The standard deviation of the distribution.

Returns:

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

Type: 
number