No BSD License
-
projet(varargin)
PROJET M-file for projet.fig
-
[Y]=chorus(X,FS,coeff)
realisation de l'effet
-
[Y]=delay(X,FS,att,d)
-
[Y]=dist(X,FS,A)
distorsion:
-
[Y]=echoes(X,FS,att,d)
-
[Y]=flange(X,FS,puissance)
-
[Y]=reverb(X,FS,temps,attenua...
effet Reverb
-
View all files
|
|
| [Y]=reverb(X,FS,temps,attenuation) |
% effet Reverb
function [Y]=reverb(X,FS,temps,attenuation)
% temps est en ms
% cration du filtre
temps=temps/1000;
del=round(temps*FS);
b=zeros(1 , 4*del);
b(1)=1;
a=[1];
b(4*del)= attenuation;
b(3*del)= attenuation + 0.07;
b(2*del)= attenuation + 0.07;
b(del)= attenuation + 0.08;
% filtrage
Y=filter(b,a,X);
|
|
Contact us at files@mathworks.com