Problem with plotting a phase response of a time-series data FFT

3 次查看(过去 30 天)
I'm trying to compare a time-series FFT to a transfer function frequency response. For this, I'm using the commands "abs" and "phase" to colect magnitude and phase, respectively, from the data and from the transfer function (using freqresp( ) command). However, when I plot the both graphs, the magnitude is ok, but phase response is not. It's returning to zero phase at the Nyquist Frequency (this frequency is the last one of my frequency vector).
See my code bellow :
Ryu_fft = fft(Ryu)/Ryu_length; %Obtainnig the FFT of my time-series data
Ryu_fft_dB = 20*log10(abs(Ryu_fft(1:NFFT/2+1))); %Evaluating the magnitude response
Ryu_fft_phase = phase(Ryu_fft(1:NFFT/2+1))*180/pi; %Evaluating Phase response in degrees
f = linspace(0,1,NFFT/2+1)
Now, see my semilogx() plot of this:
How could I fix this problem?
I suspect it is only a code problem once the magnitude is ok.

回答(1 个)

Star Strider
Star Strider 2019-6-17
See if using the unwrap function on the phase vector (in radians, before transforming it to degrees) has the desired effect.
I do not recognise the phase function, since it appears only in:
C:\Program Files\MATLAB\R2019a\toolbox\ident\idobsolete\phase.m
  2 个评论
Gustavo da Silva Lima
Thank you for help me. Unfortunately the command "unwrap", implemented as you suggested, is not solving my problem.
About the command "phase"...yes, I'm using this to identify a dynamic system. I've tried to use angle() and atan2(), but "phase" looks better.
Star Strider
Star Strider 2019-6-17
My pleasure.
Oh, well.
It was just an hypothesis that phase-wrapping was the problem. Not enough information for any other Answer.

请先登录,再进行评论。

社区

更多回答在  Power Electronics Control

类别

Help CenterFile Exchange 中查找有关 Digital Filter Analysis 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by