cupyx.scipy.special.bdtrc#
- cupyx.scipy.special.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:
See also
scipy.special.bdtrc()