dpnp.random.logistic
- dpnp.random.logistic(loc=0.0, scale=1.0, size=None)[source]
Draw samples from a logistic distribution.
For full documentation refer to
numpy.random.logistic
.Limitations
Parameters loc and scale are supported as scalar. Otherwise,
numpy.random.logistic(loc, scale, size)
samples are drawn. Output array data type isdpnp.float64
.Examples
>>> loc, scale = 0., 1. >>> s = dpnp.random.logistic(loc, scale, 1000)