new norm()
- Source
Methods
(static) dist(x, mean, standard_dev, cumulative) → {number}
Returns the normal cumulative distribution.
Parameters:
Name | Type | Description |
---|---|---|
x | number | The value for which you want the distribution. |
mean | number | The arithmetic mean of the distribution. |
standard_dev | number | The standard deviation of the distribution. |
cumulative | boolean | 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. |
- Source
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:
Name | Type | Description |
---|---|---|
probability | number | A probability corresponding to the normal distribution. |
mean | number | The arithmetic mean of the distribution. |
standard_dev | number | The standard deviation of the distribution. |
- Source
Returns:
the inverse of the normal cumulative distribution or an error if the arguments are incorrect.
- Type:
- number