cupyx.scipy.special.nbdtrc#

cupyx.scipy.special.nbdtrc()#

Negative binomial distribution survival 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 + 1 or more failures before n successes in a sequence of events with individual success probability p.

Return type:

cupy.ndarray

See also

scipy.special.nbdtrc()