0
我希望聽到的下一個聲音是所有以前同時播放的諧波的組合,但我無法讓它工作。仍然是ipython的新手,所以仍然在學習如何使用它。在彼此頂部添加諧波ipython
t = arange(0, 0.5, 1/44100)
fundamental = 440
mySound = sin(2*pi*t*100)
for k in range(1,6) :
print "Adding harmonic: ", k
mySound = concatenate([mySound, (mySound+(sin(2*pi*((2*k)-1)*t*100)/((2*k)-1)))/k])
play(mySound)
plot(mySound[1:1000]) # plot first 1000 samples
請添加您的導入並適當標記您的問題。 – cel 2015-04-02 17:32:29