cupyx.scipy.special.gdtr#

cupyx.scipy.special.gdtr()#

Gamma distribution cumulative distribution function.

Parameters:
  • a (cupy.ndarray) – The rate parameter of the gamma distribution, sometimes denoted beta (float). It is also the reciprocal of the scale parameter theta.

  • b (cupy.ndarray) – The shape parameter of the gamma distribution, sometimes denoted alpha (float).

  • x (cupy.ndarray) – The quantile (upper limit of integration; float).

Returns:

F – The CDF of the gamma distribution with parameters a and b evaluated at x.

Return type:

cupy.ndarray

See also

scipy.special.gdtr()