Warning

This page was created from a pull request.

jax.scipy.special.erfinv¶

jax.scipy.special.erfinv(x)[source]¶

Inverse of the error function.

LAX-backend implementation of erfinv(). Original docstring below.

erfinv(x, /, out=None, *, where=True, casting=’same_kind’, order=’K’, dtype=None, subok=True[, signature, extobj])

Computes the inverse of the error function.

In the complex domain, there is no unique complex number w satisfying erf(w)=z. This indicates a true inverse function would have multi-value. When the domain restricts to the real, -1 < x < 1, there is a unique real number satisfying erf(erfinv(x)) = x.

Returns
erfinvndarray

The inverse of erf of y, element-wise)

erf : Error function of a complex argument erfc : Complementary error function, 1 - erf(x) erfcinv : Inverse of the complementary error function

  1. evaluating a float number

>>> from scipy import special
>>> special.erfinv(0.5)
0.4769362762044698
  1. evaluating an ndarray

>>> from scipy import special
>>> y = np.linspace(-1.0, 1.0, num=10)
>>> special.erfinv(y)
array([       -inf, -0.86312307, -0.5407314 , -0.30457019, -0.0987901 ,
        0.0987901 ,  0.30457019,  0.5407314 ,  0.86312307,         inf])