cupy.random.logistic#
- cupy.random.logistic(loc=0.0, scale=1.0, size=None, dtype=<class 'float'>)[source]#
Logistic distribution.
Returns an array of samples drawn from the logistic distribution. Its probability density function is defined as
\[f(x) = \frac{e^{-(x-\mu)/s}}{s(1+e^{-(x-\mu)/s})^2}.\]- Parameters:
- Returns:
Samples drawn from the logistic distribution.
- Return type:
See also