scipy.special.poch¶
-
scipy.special.
poch
(z, m) = <ufunc 'poch'>¶ Rising factorial (z)_m
The Pochhammer symbol (rising factorial), is defined as
\[(z)_m = \frac{\Gamma(z + m)}{\Gamma(z)}\]For positive integer m it reads
\[(z)_m = z (z + 1) ... (z + m - 1)\]- Parameters
- zarray_like
(int or float)
- marray_like
(int or float)
- Returns
- pochndarray
The value of the function.