cupyx.scipy.special.bdtrc#

cupyx.scipy.special.bdtrc = <ufunc 'cupyx_scipy_bdtrc'>#

Binomial distribution survival function.

Returns the complemented binomial distribution function (the integral of the density from x to infinity).

Parameters
  • k (cupy.ndarray) – Number of successes (float), rounded down to the nearest integer.

  • n (cupy.ndarray) – Number of events (int).

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

Returns

y – Probability of floor(k) + 1 or more successes in n independent events with success probabilities of p.

Return type

cupy.ndarray

See also

scipy.special.bdtrc()