frequency to time domain
古いコメントを表示
I have magnitude and phase of signal in frequency domain and I need to have it in time domain. I know I have to use ifft function, but I heard about mirroring and concatenating these values and I'm kinda lost. I'd appreciate any help with that
I have tried doing something like this, but I'm clearly missing the point
%A - magnitude
z = A .* exp(i*phase);
X = ifft(z);
figure, plot(abs(X))
figure, plot(angle(X))
These are my magnitude and phase in frequency domain

採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Filter Analysis についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
