jax.scipy.special.erfc#

jax.scipy.special.erfc(x)[原始碼]#

互補誤差函數

JAX 實作的 scipy.special.erfc

\[\mathrm{erfc}(x) = \frac{2}{\sqrt\pi} \int_{x}^\infty e^{-t^2} \mathrm{d}t\]

這是誤差函數 erf() 的互補函數,erfc(x) = 1 - erf(x)

參數:

x (ArrayLike) – 類陣列,實數值。

返回:

包含互補誤差函數值的陣列。

返回類型:

Array

筆記

JAX 版本僅支援實數值輸入。