jax.scipy.stats.truncnorm.logpdf

目录

jax.scipy.stats.truncnorm.logpdf#

jax.scipy.stats.truncnorm.logpdf(x, a, b, loc=0, scale=1)[源代码][源代码]#

截断正态对数概率分布函数。

JAX implementation of scipy.stats.truncnorm logpdf.

截断正态概率分布由以下公式给出

\[\begin{split}f(x, a, b) = \begin{cases} \frac{1}{\sqrt{2\pi}}e^{-x^2/2} & a \le x \le b \\ 0 & \mathrm{otherwise} \end{cases}\end{split}\]

其中 \(a\)\(b\) 是以标准差为单位从零开始有效指定的。JAX 使用 scipy 的术语,loc 表示质心,scale 表示标准差。

参数:
  • x – arraylike, 用于评估PDF的值

  • a – arraylike, 分布形状参数

  • b – arraylike, 分布形状参数

  • loc – arraylike, 分布偏移参数

  • scale – arraylike, 分布尺度参数

返回:

对数概率密度值的数组。