cupy.random.pareto#
- cupy.random.pareto(a, size=None, dtype=<class 'float'>)[source]#
Pareto II or Lomax distribution.
Returns an array of samples drawn from the Pareto II distribution. Its probability density function is defined as
\[f(x) = \alpha(1+x)^{-(\alpha+1)}.\]- Parameters:
- Returns:
Samples drawn from the Pareto II distribution.
- Return type:
See also