How can i determine phase in FFT?

398 次查看(过去 30 天)
Hi everyone, right now im trying to calculate signal phases using angle(x) from FFT Function im Matlab. Noted that i've coded the program like below :
%%Plotting Grafik
%create a time vector 't', containing integers from 1 to n(summary of data)
count= length(data);
Ts=mean(diff(times1));
Fs=1/Ts;
NFFT=2^nextpow2(count);
y=fft(data,NFFT)/count;
f=Fs/2*linspace(0,1,NFFT/2+1);
figure(2)
plot(f,2*abs(y(1:NFFT/2+1)));
grid on
title('Single-Sided Amplitude Spectrum of y(t)');
xlabel('Frequency(Hz)');
ylabel('|Y(f)|');
phase=angle(y);
But i'm not really sure with the phase function. Does anyone ever has the same experience?
Thanks before for your answer.
  6 个评论
WH Wang
WH Wang 2023-6-28
it's atan2(imaginary,real) in matlab, or using phase() function of matlab.
Star Strider
Star Strider 2023-6-28
There is no phase function that I can find in the documentation, however there is the angle function that returns the phase angle (in radians) of a complex argument.

请先登录,再进行评论。

采纳的回答

Star Strider
Star Strider 2016-10-24
编辑:Star Strider 2016-10-24
Your code appears to me to be correct, including the ‘phase’ assignment. Note that the units of ‘phase’ are in radians. Convert them to degrees (if desired) by multiplying them by 180/pi.
I’m not certain what you want, so also consider the unwrap function. Use it on the radian units, and convert to degrees later if necessary.
EDIT If you want to plot it, the easiest way is to use the subplot function. Your plotting code changes to:
phase=angle(y);
figure(2)
subplot(2,1,1)
plot(f,2*abs(y(1:NFFT/2+1)));
grid on
title('Single-Sided Spectrum of y(t)');
ylabel('|Y(f)|');
subplot(2,1,2)
plot(f,phase)
grid on
xlabel('Frequency(Hz)');
ylabel('Phase (rad)')
I did not test that, but it should work.
  14 个评论
Big dream
Big dream 2016-12-6
thanks again for your advice.^^

请先登录,再进行评论。

更多回答(1 个)

karinkan
karinkan 2018-6-1
I am a bit confusing that the following two equations which one is correct? eq.1 y=fft(data,NFFT)/count; eq.2 y=fft(data,NFFT)/NFFT;

类别

Help CenterFile Exchange 中查找有关 Matched Filter and Ambiguity Function 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by