cupyx.scipy.special.nbdtr#

cupyx.scipy.special.nbdtr = <ufunc 'cupyx_scipy_nbdtr'>#

Negative binomial distribution cumulative distribution function.

Parameters
  • k (cupy.ndarray) – The maximum number of allowed failures (nonnegative int).

  • n (cupy.ndarray) – The target number of successes (positive int).

  • p (cupy.ndarray) – Probability of success in a single event (float).

Returns

F – The probability of k or fewer failures before n successes in a sequence of events with individual success probability p.

Return type

cupy.ndarray

See also

scipy.special.nbdtr()