pub fn inv_norm_cdf(p: f64) -> f64Expand description
Inverse of the standard normal CDF (quantile function).
Acklam’s rational approximation refined with one Halley step against the
erf-based norm_cdf, giving close to machine precision. p must be in (0, 1);
values outside return NaN.