cupyx.scipy.special.fdtri#
- cupyx.scipy.special.fdtri()#
The p-th quantile of the F-distribution.
This function is the inverse of the F-distribution CDF, fdtr, returning the x such that fdtr(dfn, dfd, x) = p.
- Parameters:
dfn (cupy.ndarray) – First parameter (positive float).
dfd (cupy.ndarray) – Second parameter (positive float).
p (cupy.ndarray) – Cumulative probability, in [0, 1].
- Returns:
y (cupy.ndarray) – The quantile corresponding to p.
See also
scipy.special.fdtri()