Post Bottom Ad

The Slider

Plot trigonometric function using Python



import matplotlib.pyplot as plt
import numpy as np


Fs = 8000
f = 5
sample = 8000
x = np.arange(sample)
y = np.sin(2 * np.pi * f * x / Fs)
plt.plot(x, y)
plt.xlabel('sample(n)')
plt.ylabel('voltage(V)')
plt.show()
Plot trigonometric function using Python Plot trigonometric function using Python Reviewed by Dayeen on 10:01:00 PM Rating: 5
Powered by Blogger.