Borrar filtros
Borrar filtros

How to plot bode plot from FFT data

53 visualizaciones (últimos 30 días)
SACHIN DEVASSY
SACHIN DEVASSY el 30 de Sept. de 2013
Comentada: Arkadiy Turevskiy el 1 de Oct. de 2013
Hi, I would like to get bode plot from FFT data. How do I convert the data obtained(complex values) so that it can be used by the 'bode' function in matlab.
Thanking you.

Respuestas (1)

Arkadiy Turevskiy
Arkadiy Turevskiy el 30 de Sept. de 2013
You need to create an frd object.
here is example code from doc page.
% generate a frequency vector and response data
freq = logspace(1,2);
resp = .05*(freq).*exp(i*2*freq);
% Create a FRD model
sys = frd(resp,freq);
Now simply do
bode(sys)
  2 comentarios
SACHIN DEVASSY
SACHIN DEVASSY el 1 de Oct. de 2013
Thanks Arkadiy for the reply. However, I am unable to understand how to make frd data from fft data. I got lets say ,following data points after doing fft [2+2j,1-3j,4, 5+4j]. How do i convert this into frd. Thanking you.
Arkadiy Turevskiy
Arkadiy Turevskiy el 1 de Oct. de 2013
resp=[2+2j,1-3j,4, 5+4j];
freq= % enter the frequency values at which the corresponding fft
% values are obtained
sys=frd*resp,freq);

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by