jax.scipy.stats.norm.sf#

jax.scipy.stats.norm.sf(x, loc=0, scale=1)[原始碼]#

常態分佈生存函數。

JAX 實作的 scipy.stats.norm sf

生存函數定義為

\[f_{sf}(x) = 1 - f_{cdf}(x)\]

其中 \(f_{cdf}(x)\) 是累積分佈函數,jax.scipy.stats.norm.cdf()

參數:
  • x (Array | ndarray | bool | number | bool | int | float | complex) – 類陣列,評估 SF 的值

  • loc (Array | ndarray | bool | number | bool | int | float | complex) – 類陣列,分佈偏移參數

  • scale (Array | ndarray | bool | number | bool | int | float | complex) – 類陣列,分佈尺度參數

返回:

sf 值的陣列。

返回類型:

Array