cupyx.scipy.special.bdtr#

cupyx.scipy.special.bdtr = <ufunc 'cupyx_scipy_bdtr'>#

Binomial distribution cumulative distribution function.

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) or fewer successes in n independent events with success probabilities of p.

Return type

cupy.ndarray

See also

scipy.special.bdtr()