Should I use the absolute value of fast Fourier transform or the conjugate in signal analysis?
Afficher commentaires plus anciens
I found this example in MATLAB https://www.mathworks.com/help/matlab/math/fft-for-spectral-analysis.html and I saw that they used the value of conjugate.
Pyy = Y.*conj(Y)/251;
I tried to calculate the magnitude using abs function rather than this line. I get nearly the same output.
Therefore, I am puzzled; should I use the way in this example or the magnitude way?
Réponse acceptée
Plus de réponses (1)
Bruno Luong
le 18 Nov 2020
0 votes
Y.*conj(Y) is abs(Y)^2
1 commentaire
Muhamed Sewidan
le 23 Nov 2020
Catégories
En savoir plus sur Fourier Analysis and Filtering dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!