Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. fs = 48000
  2.  
  3. T = 1
  4.  
  5. t = np.linspace(0, T, T*fs, endpoint=False)
  6.  
  7. w = chirp(t, f0=0, f1=20000, t1=1, method='linear')
  8. Audio(w, rate=fs)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement