![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/352478/image.png)
query on DFT plotting
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
pss aditya
le 27 Août 2020
Réponse apportée : Star Strider
le 27 Août 2020
x_mags=abs(fft(x));
plot(x_mags);
xlabel('DFT bins');
ylabel('magnitude');
%plotting the DFT(norm freq)
num_bins=length(x_mags);
plot([0:1/(num_bins/2 -1):1], x_mags(1:num_bins/2));
xlabel('norm frequency (\pi rads/sample)');
ylabel('magnitude');
so the text i bolded and underlined, why are the limits in plot in such way?
is there any specific reason?
0 commentaires
Réponse acceptée
Star Strider
le 27 Août 2020
It is plotting only the first half of the fft result ‘x_mags’ from 0 to π radians. This is the usual approach, since ‘x_mags’ is actually symmetrical, with the second half being the complex conjugate of the first half. (There is usuallny no reason to plot both halves, unless you are using fftshift and plotting from
to π in this instance. That is not the situation here.)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/352478/image.png)
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!