IFFT of Low Pass Filter function
Afficher commentaires plus anciens
Let, a low pass filter function, R= α^2/(α^2+〖(2πfd)〗^2 ) , where d and α are constant, f is frequency.
If I take the IFFT of R, I should see an exponetial plot (in time domain). But I get it wrong at output. Probably I have done something wrong in my code. Any help would be greately appreciated. I have included my code here:
f = logspace(0,10,1000);
alpha = 0.295/4.343/1000;
d = 1.6693e-12;
A = alpha.^2 ./ (alpha.^2 + (2.*pi.*f.*d).^2);
B =abs(ifftshift(ifft(A)));
B = B(length(B)/2 : end); %
semilogy(B);
Réponses (1)
Arin Dutta
le 4 Août 2021
0 votes
Catégories
En savoir plus sur Filter Analysis dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!