Guest User

Untitled

a guest
Jun 21st, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. import numpy as np
  2. import matplotlib.pyplot as plt
  3.  
  4. my_array = np.random.normal(size=1000)
  5.  
  6. plt.acorr(my_array, detrend=plt.mlab.detrend_mean, maxlags=100)
  7. plt.xlim(0, 100)
Add Comment
Please, Sign In to add comment