How to write this function in MATLAB
Show older comments
Hello , I am trying to calculate the DTFT of a sequence and compare it using freqz function....
The DTFT of my sequence is

How do I program this in MATLAB ....
w is vectorized quantity
L = 40
1 Comment
darova
on 11 Feb 2021
Please provide your attempts
Answers (1)
Drishan Poovaya
on 24 Mar 2021
I understand you want to write this function in MATLAB with w as a vector. The code below should accomplish this
Pw = L*exp(-1i*w*(L-1)/2).*(sinc(w*L/(2*pi))./sinc(w/(2*pi)));
Categories
Find more on Multirate Signal Processing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!