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

Upload New File

parent d0bd45ad
Loading
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