Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 414 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 414 Bytes

Random numbers

Generate a one dimensional 1000 element array of uniformly distributed random numbers using the numpy.random module.

  1. Calculate the mean and standard deviation of the array using numpy.mean() and numpy.std().
  2. Choose some other random distribution and calculate its mean and standard deviation.

You can visualize the random distributions with matplotlib’s hist() function.