Auto-Correlation and Echo Cancellation Exercises  

           Now listen to both signals by typing:

    soundsc('Exercise1');
    soundsc('Exercise2');

and also plot their normalized auto-correlation functions using the commands:


    plot(-6999:6999,xcorr(Exercise1,'coeff'));

    grid;

    figure;

    plot(-10000:10000,xcorr(Exercise2,'coeff'));

    grid;
     


Determine for both signals Exercise1 and Exercise2 the delay(s) N in samples. [Note: one of the signals has more than one echo. Can you identify the signal and the delays?]