<< sinc | Signal Processing | zp2tf >> |
C = xcorr2(A) |
C = xcorr2(A, B) |
matrices
matrices
2-D cross-correlation or autocorrelation matrix
xcorr2(A, B) calculates the cross-correlation between two matrices, A and B, in two dimensions, without any scaling applied.
X = ones(2, 3);
H = [1 2; 3 4; 5 6];
C = xcorr2(H, X)
Version | Description |
---|---|
1.3.0 | initial version |
Allan CORNET