필터 지우기
필터 지우기

How to get xcorr results in coef between 0 and 1 when comparing 2 wave sound with different length ?

조회 수: 3 (최근 30일)
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

답변 (1개)

Honglei Chen
Honglei Chen 2015년 7월 21일
You can try
xcorr(soundA,soundB,'coeff')
HTH

카테고리

Help CenterFile Exchange에서 Correlation and Convolution에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by