jax.scipy.special.erfc

Contents

jax.scipy.special.erfc#

jax.scipy.special.erfc(x)[source]#

Complementary error function, 1 - erf(x).

LAX-backend implementation of scipy.special.erfc().

Original docstring below.

Parameters:
  • x (array_like) – Real or complex valued argument

  • out (ndarray, optional) – Optional output array for the function results

Returns:

Values of the complementary error function

Return type:

scalar or ndarray

References