cupyx.scipy.special.btdtri#
- cupyx.scipy.special.btdtri()#
The p-th quantile of the beta distribution.
This function is the inverse of the beta cumulative distribution function, btdtr, returning the value of x for which
btdtr(a, b, x) = p
.- Parameters:
a (cupy.ndarray) – Shape parameter (a > 0).
b (cupy.ndarray) – Shape parameter (b > 0).
p (cupy.ndarray) – Cumulative probability, in [0, 1].
- Returns:
x – The quantile corresponding to p.
- Return type:
See also