Skip to content

Instantly share code, notes, and snippets.

View ekim1394's full-sized avatar

Eugene Kim ekim1394

View GitHub Profile
@ekim1394
ekim1394 / audio_fun.py
Last active September 21, 2016 00:49 — forked from ayota/audio_fun.py
import numpy as np
import scikits.audiolab
import scipy
#random number generator in n x 3 matrix to generate "Computer Sheet Music"
num = np.random.rand(1,3) #initialize
sheet_music = np.vstack(num)
for i in range (0,8): #number of notes in sheet_music
notes = np.random.rand(1,3)