cupy.random.noncentral_f¶
-
cupy.random.noncentral_f(dfnum, dfden, nonc, size=None, dtype=<class 'float'>)[source]¶ Noncentral F distribution.
Returns an array of samples drawn from the noncentral F distribution.
Reference: https://en.wikipedia.org/wiki/Noncentral_F-distribution
Parameters: - dfnum (float) – Parameter of the noncentral F distribution.
- dfden (float) – Parameter of the noncentral F distribution.
- nonc (float) – Parameter of the noncentral F distribution.
- size (int or tuple of ints) – The shape of the array. If
None, a zero-dimensional array is generated. - dtype – Data type specifier. Only
numpy.float32andnumpy.float64types are allowed.
Returns: Samples drawn from the noncentral F distribution.
Return type: See also
numpy.random.noncentral_f