correlation of speech signal

i hav a speech signal which contains noise. sampling frequency 8000Hz
how can i perform the autocorrelation of this signal with the delay of 100 samples?

 채택된 답변

Wayne King
Wayne King 2013년 4월 25일
편집: Wayne King 2013년 4월 25일

0 개 추천

Do you have the Signal Processing Toolbox? If so, you can use xcorr()
I'll give you an example
load mtlb;
[xc,lags] = xcorr(mtlb,100,'coef');
xc above is 201 samples long with the autocorrelation out to lags of +/- 100 (plus 0)
You can just extract the positive lags with
stem(lags(101:end),xc(101:end))

추가 답변 (0개)

카테고리

질문:

2013년 4월 25일

Community Treasure Hunt

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

Start Hunting!

Translated by