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

Delete SAR3Q7.m

parent 8a77d405
Branches
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