Borrar filtros
Borrar filtros

How to determine phase of a sine wave using FFT

118 visualizaciones (últimos 30 días)
Fuh-Cherng
Fuh-Cherng el 25 de Mzo. de 2016
Comentada: Star Strider el 6 de En. de 2018
Dear MATLAB experts,
For a small project that I want to do, I need to compute the phase of a sine wave. However, I was unable to obtain a correct result. I have posted my code with this message (please see attachment) for your review and comments. If anyone could help me with this, I would greatly appreciate it.
Thank you!
Fuh

Respuesta aceptada

Star Strider
Star Strider el 25 de Mzo. de 2016
Editada: Star Strider el 25 de Mzo. de 2016
The code hasn’t posted. Use the angle function on the output of the fft function:
t = [...]; % Time Vector
s = [...]; % Signal Vector
Ts = mean(diff(t)); % Sampling Time
Fs = 1/Ts; % Sampling Frequency
Fn = Fs/2; % Nyquist Frequency
L = length(s);
fts = fft(s)/L; % Normalised Fourier Transform
Fv = linspace(0, 1, fix(L/2)+1)*Fn; % Frequency Vector
Iv = 1:length(Fv); % Index Vector
amp_fts = abs(fts(Iv))*2; % Spectrum Amplitude
phs_fts = angle(fts(Iv)); % Spectrum Phase
Note This is obviously UNTESTED CODE but it should work.
  6 comentarios
H S
H S el 6 de En. de 2018
Dear Star Strider,
I think for the zero frequency (DC), your code after "amp_fts = abs(fts(Iv))*2;" should be corrected as follows:
amp_fts(1)=amp_fts(1)/2;
Star Strider
Star Strider el 6 de En. de 2018
Not according to fft (link).

Iniciar sesión para comentar.

Más respuestas (1)

Fuh-Cherng
Fuh-Cherng el 27 de Mzo. de 2016
Thank you so much for pointing out the mistake I made! Greatly appreciated!
  1 comentario
Star Strider
Star Strider el 27 de Mzo. de 2016
As always, my pleasure.
I would appreciate it then if you would Accept my Answer.
You can do that by deleting your Answer and then Accepting mine. (No one gets any credit for Accepting their own Answer, anyway.)

Iniciar sesión para comentar.

Categorías

Más información sobre Spectral Measurements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by