dpnp.random.standard_exponential

dpnp.random.standard_exponential(size=None)[source]

Draw samples from the standard exponential distribution.

standard_exponential is identical to the exponential distribution with a scale parameter of 1.

Limitations

Output array data type is default float type.

Examples

Output a 3x8000 array:

>>> n = dpnp.random.standard_exponential((3, 8000))