Discrete-time cross-correlogram

버전 1.2.0.0 (1.97 KB) 작성자: Alex Wiltschko
Cures cross-correlograms and headaches!* *note: does not actually cure headaches.
다운로드 수: 1.5K
업데이트 날짜: 2010/9/20

라이선스 보기

Computes cross- or auto-correlograms between two discrete time series, supplied as a list of timestamps.

[tsOffsets, ts1idx, ts2idx] = crosscorrelogram(ts1, ts2, window)

INPUTS:
ts1 - a list of timestamps (in seconds) to use as the reference of the cross-correlogram
ts2 - timestamps (in seconds) used to create the cross-correlogram, compared against ts1
window - a length-2 vector specifying the width of the correlogram to compute, in seconds.

OUTPUTS:
tsOffsets - a list of offsets from timestamps in ts2 to their nearest timestamp in ts1.
ts1idx - an index for each offset in tsOffsets into ts1.
ts2idx - an index for each offset in tsOffsets into ts2.

USAGE:
% Create a dummy time series where one leads the other by 0.3 seconds
ts1 = sort(rand(1000,1)*1000);
ts2 = ts1 + 0.3;

% Calculate the cross-correlogram between the two signals with a 0.5 second window, starting at each spike time in ts1
offsets = crosscorrelogram(ts1, ts2, [0 0.5]);
hist(offsets, 100);

인용 양식

Alex Wiltschko (2026). Discrete-time cross-correlogram (https://kr.mathworks.com/matlabcentral/fileexchange/28566-discrete-time-cross-correlogram), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2008b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
도움

도움 준 파일: rookpoly(Pcoef)

버전 게시됨 릴리스 정보
1.2.0.0

corrected grammar in snarky summary description

1.1.0.0

Removed extraneous variables (more cleanup will occur in the future)

1.0.0.0