jax.scipy.special.factorial#
- jax.scipy.special.factorial(n, exact=False)[source]#
The factorial of a number or array of numbers.
LAX-backend implementation of
scipy.special.factorial().Original docstring below.
The factorial of non-negative integer n is the product of all positive integers less than or equal to n:
n! = n * (n - 1) * (n - 2) * ... * 1
- Parameters:
- Returns:
nf – Factorial of n, as integer or float depending on exact.
- Return type: