필터 지우기
필터 지우기

xcorr lag input to time?

조회 수: 4 (최근 30일)
FsC
FsC 2023년 5월 23일
편집: FsC 2023년 5월 24일
Hello,
I am trying to find the cross-correlation of two 1x180000 vectors (sigX and sigY). The sampling frequency is fs=1000. I am trying to find the xcorr with a lag of 30 s. How do I input the lag of -30:30 sec to the xcorr function given the sampling rate?
[c,lags] = xcorr(x,y,LAGS,'normalized');
The input 'm asking about is LAGS. Is this input in samples or time? If time, what unit of time?
Thank you

채택된 답변

David Goodmanson
David Goodmanson 2023년 5월 24일
편집: David Goodmanson 2023년 5월 24일
Hi Carly,
lags is a dimensionless index, so it's in samples (it has to be samples since xcorr has no way of knowing what fs might be). Since sampling frequency times a time interval is the number of samples, the input to xcorr is LAGS = (-30:30)*fs, a dimensionless index.
(This is assuming that 30* fs is exactly an integer, otherwise some rounding will be involved).
  댓글 수: 1
FsC
FsC 2023년 5월 24일
thank you!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

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

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by