Skip to content

norm_inv

Inverse normal CDF (quantile function).

v = norm_inv(probability, mean, standard_dev)

Returns the value x such that norm_dist(x, mean, sd, true) = probability. The inverse of the normal CDF.

norm_inv(0.975, 0, 1) % ≈ 1.96