how to find phase angle for the FFT data of a transient signal ?
Afficher commentaires plus anciens
currently i am using PSD to calculate my fft
[y(:,1),f] = pwelch(z1(:,1),hann(fsize),round(fsize/2),fsize,fs);% calculate PSD
yfft(:,1)=sqrt(1.5*y(:,1));% calculate fft
Réponses (1)
Honglei Chen
le 6 Août 2012
0 votes
Why not just use fft? PSD contains only the power information so the phase information is lost.
3 commentaires
Mahesh
le 6 Août 2012
Honglei Chen
le 6 Août 2012
Modifié(e) : Honglei Chen
le 6 Août 2012
What is your expected result and what is the result you get from FFT? Like I mentioned, you cannot expect to get phase from PSD since there is no phase information in it.
John Petersen
le 6 Août 2012
You may need to apply a window on the data to reduce the effects of nonzero starting and ending points of the data set.
Catégories
En savoir plus sur Spectral Measurements 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!