Skip to content

komm.gaussian_q_inv

Computes the inverse Gaussian Q-function.

Parameters:

  • y (ArrayLike)

    The input to the function. Should be a float or array of floats in the real interval $[0, 1]$.

Returns:

  • x (NDArray[floating] | floating)

    The value $x = \mathrm{Q^{-1}}(y)$.

Examples:

>>> komm.gaussian_q_inv(0.5)
np.float64(0.0)
>>> komm.gaussian_q_inv([[0.841344746], [0.5], [0.158655254]])
array([[-1.],
       [ 0.],
       [ 1.]])