Guest User

Untitled

a guest
Dec 11th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. import numpy as np
  2. import matplotlib
  3. import matplotlib.pyplot as plt
  4.  
  5. N=4000
  6. x = np.random.normal(loc=0,scale=1,size=N)
  7.  
  8. plt.hist(x,50,facecolor="b")
  9. plt.show()
Add Comment
Please, Sign In to add comment