Skip to content
Snippets Groups Projects
Commit 9090991a authored by YE Victor's avatar YE Victor
Browse files

Upload New File

parent 18e4727d
No related branches found
No related tags found
No related merge requests found
function y = effet_reverb_FFT(x, h)
%taille du signal de sortie
NFFT = length(x) + length(h) - 1;
% Passage au domaine fréquentiel
X = fft(x, NFFT);
H = fft(h, NFFT);
%multiplication des spectres
Y = X .* H;
% Retour dans le domaine temporel
y = real(ifft(Y));
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment