フィルターのクリア

Inverse Fourier Transform: Frequency to time domain

2 ビュー (過去 30 日間)
SUBHO MITRA
SUBHO MITRA 2020 年 10 月 13 日
回答済み: Ameer Hamza 2020 年 10 月 13 日
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!

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 10 月 13 日
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);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFourier Analysis and Filtering についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by