Skip to content

komm.qfuncinv

Computes the inverse Gaussian Q-function.

Parameters:

  • y (float | ArrayND[float])

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

Returns:

  • x (SameAsInput)

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

Examples:

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