Filter löschen
Filter löschen

Inverse Fourier Transform: Frequency to time domain

2 Ansichten (letzte 30 Tage)
SUBHO MITRA
SUBHO MITRA am 13 Okt. 2020
Beantwortet: Ameer Hamza am 13 Okt. 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!

Akzeptierte Antwort

Ameer Hamza
Ameer Hamza am 13 Okt. 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);

Weitere Antworten (0)

Kategorien

Mehr zu Fourier Analysis and Filtering finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by