How to get xcorr results in coef between 0 and 1 when comparing 2 wave sound with different length ?
Mostrar comentarios más antiguos
soundA = Path_of_soundA.wav;
soundB = Path_of_soundB.wav; %%soundA and soundB have not the same length
[C1,lag1] = xcorr(soundA,soundB);
avv = max(xcorr(soundA,soundB));
fprintf(['\n avv = ', num2str(avv)]); %%I want something between 0 and 1. Something that I
%%know the limit
Respuestas (1)
Honglei Chen
el 21 de Jul. de 2015
You can try
xcorr(soundA,soundB,'coeff')
HTH
1 comentario
Joel Sande
el 29 de Jul. de 2015
Categorías
Más información sobre Correlation and Convolution en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!