6th Semester Files
This commit is contained in:
14
6th-Semester-Spring-2024/DSP/Labs/Lab-02/lab-02-2.py
Normal file
14
6th-Semester-Spring-2024/DSP/Labs/Lab-02/lab-02-2.py
Normal file
@@ -0,0 +1,14 @@
|
||||
import numpy as np
|
||||
import matplotlib.pyplot as plt
|
||||
|
||||
PI = np.pi
|
||||
|
||||
|
||||
fs = 20000
|
||||
t = np.arange(0, 1, 1/fs)
|
||||
|
||||
x = np.cos(2*PI*t/7)
|
||||
|
||||
plt.plot(np.arange(0,fs), abs(np.fft.fft(s)))
|
||||
|
||||
plt.show()
|
||||
Reference in New Issue
Block a user