I am working on MatLab and trying to improve myself.
I've currently converted some .wav file to echoed version with a function below
function [ ] = lab2echo(alpha,m )
fil=wavread('daffy.wav');
fil=transpose(fil);
fil2=[fil zeros(1,m)];
shifting_fil=[zeros(1,m) fil];
fil_echo=alpha*shifting_fil;
result=fil2+fil_echo;
sound(result);
end
and now I want to write a function that converts echoed voice to old version.
Is there any easy way to do it?