frequency to time domain
Afficher commentaires plus anciens
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

Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Filter Analysis dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
