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

Upload New File

parent 9a6e1e72
No related branches found
No related tags found
No related merge requests found
function y = effet_reverb_fft(x, h)
N = length(x) + length(h) - 1; % Longueur de la convolution complète
Y = ifft(fft(x, N) .* fft(h, N)); % Produit dans le domaine fréquentiel
y = real(Y); % On s'assure de prendre uniquement la partie réelle
y = y / max(abs(y)); % Normalisation
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment