Borrar filtros
Borrar filtros

Inverse Fourier Transform: Frequency to time domain

2 visualizaciones (últimos 30 días)
SUBHO MITRA
SUBHO MITRA el 13 de Oct. de 2020
Respondida: Ameer Hamza el 13 de Oct. de 2020
I want to obtain the scale of time after doing an ifft.
let I have
w=0:0.001:20 % w represents frequency
E(w)= a(w)exp(i(w-w0))
I want to obtain E(t) by E(t)=ifft(E(w))..
My question is what is the time scale representaion to get the time profile of E(t)?
Kindly help!

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 13 de Oct. de 2020
If 'w'
w = 0:0.001:20
is frequency of complete fft in rad/s. Then the sampling frequency is
Fs = (w(2)-w(1))*numel(w)/(2*pi); % sampling frequency
Ts = 1/Fs; % sampling time-step
and the corresponding time vector is
t2 = Ts*(0:numel(f)-1);

Más respuestas (0)

Categorías

Más información sobre Fourier Analysis and Filtering 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