dpnp.random.wald
- dpnp.random.wald(mean, scale, size=None)[source]
Draw samples from a Wald, or inverse Gaussian, distribution.
For full documentation refer to
numpy.random.wald
.Limitations
Parameters mean and scale are supported as scalar. Otherwise,
numpy.random.wald(mean, scale, size)
samples are drawn. Output array data type isdpnp.float64
.Examples
>>> loc, scale = 3., 2. >>> s = dpnp.random.wald(loc, scale, 1000)