jax.scipy.special.beta#
- jax.scipy.special.beta(x, y)[source]#
Beta function.
LAX-backend implementation of
scipy.special.beta().Original docstring below.
This function is defined in [1] as
\[B(a, b) = \int_0^1 t^{a-1}(1-t)^{b-1}dt = \frac{\Gamma(a)\Gamma(b)}{\Gamma(a+b)},\]where \(\Gamma\) is the gamma function.
- Returns:
Value of the beta function
- Return type:
scalar or ndarray
References