cupyx.scipy.special.bdtri#

cupyx.scipy.special.bdtri = <ufunc 'cupyx_scipy_bdtri'>#

Inverse function to bdtr with respect to p.

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

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

  • y (cupy.ndarray) – Cumulative probability (probability of k or fewer successes in n events).

Returns

p – The event probability such that bdtr(floor(k), n, p) = y.

Return type

cupy.ndarray

See also

scipy.special.bdtri()