dpnp.random.standard_normal
- dpnp.random.standard_normal(size=None)[source]
Standard normal distribution.
Draw samples from a standard Normal distribution (mean=0, stdev=1).
For full documentation refer to
numpy.random.standard_normal
.Limitations
Output array data type is
dpnp.float64
.Examples
Draw samples from the distribution: >>> s = dpnp.random.standard_normal(1000)