Audio Processing #1 : How to Generate a Sine wave in Python

preview_player
Показать описание
This is the first tutorial of the series and this tutorial shows that how you can generate a sine wave in python.
Рекомендации по теме
Комментарии
Автор

Code

import numpy as np
import math
import matplotlib.pyplot as plt
time=np.arange(0, 2*math.pi, math.pi/10)
amplitude=np.sin(time)
plt.plot(time, amplitude)

abubakartalhajalil
Автор

why didn't you just take the derivative of an infinite term polynomial to build a taylor series summation? gosh

nickadams