Drawing random numbersΒΆ

Example of drawing random uniform number with threefry.

../_images/sphx_glr_plot_random_series_001.png
import threefry
import matplotlib.pyplot as plt

r = threefry.rng(8760396957664838051)

data = [r.random_uniform() for i in range(10)]

plt.plot(data)

plt.show()

Total running time of the script: ( 0 minutes 0.099 seconds)

Generated by Sphinx-Gallery