Table of Contents
Introduction
Cross correlation is a mathematical measure of similarity between two signals. The time lag is used to measure the similarity between two signals as they are shifted in time relative to one another by samples. In this blog post examples will be given which explain why time lags are used in the cross correlation equation.
More posts in the cross correlation series:
Cross Correlation Review
The blog post Cross Correlation Explained With Real Signals described how cross correlation compares the similarity of two signals. The examples used signals which:
- are the same length,
- and have no relative time delay.
Under these conditions the cross correlation can be simplified to
(1)
However when the sequences x[n] and y[n] are of unequal length the time lag is needed to time align them and measure their similarity at multiple time delays.
The cross correlation for discrete-time sequences is defined as
(2)
The time lag is used to apply a relative time shift the two sequences so their similarity can be compared over time. The following section demonstrates an example on calculating cross correlation over multiple values of .
Comparing Different Sequence Lengths
The sequence x[n] is defined according to
(3)
which has length of 5 samples. Now consider a signal y[n] which has a length of 4 samples,
(4)
The sequences x[n] and y[n] are plotted in the time domain in Figure 1.
How can the similarity be compared between x[n], which 4 samples long, and y[n], which is 5 samples long? Since x[n] is shorter than y[n] the first step would be to compare the first 4 samples of x[n] with y[n]. The cross correlation between x[n] and y[n] with no relative time delay () is
(5)
The second step to compare the signals would be to compare the last 4 samples of x[n] with y[n], or equivalently compare x[n] with y[n-1]. The sequences x[n] and y[n-1] are shown in Figure 2.
The cross correlation between x[n] and y[n] with a sample relative delay is the same as delaying y[n] by 1 sample, y[n-1], and then multiplying it against x[n] and summing the result. The cross correlation at is calculated by
(6)
Question: Does (5) or (6) better represent the cross-correlation between x[n] and y[n]? Which demonstrates the similarity of the two sequences better?
Answer: Both (5) and (6) represent a portion of the cross-correlation between x[n] and y[n]. Neither of the two cross-correlation values is more important or carries more information, they are measuring the similarity at different time delays.
While this example only compared the sequences for two values of , cross correlation is used over much longer sequences and more values of to fully characterize the similarity between two sequences. One way this characterization is applied is by searching for a known sequence.
Cross Correlation for Sequence Detection
Cross correlation can be used to locate a known sequence c[n] within a longer sequence y[n]. The cross correlation is defined by
(7)
The cross correlation (7) slides the sequence c[n] through y[n] through multiple time delays .
Comparing the similarity between the two sequences at multiple time lags is a gauge as to the most likely location of the known sequence. The time lag T is defined when the location of the known sequence when is the maximum value. Mathematically this is stated by:
(8)
where T is the starting sample of the sequence c[n] within y[n].
The following example shows how to use cross correlation to find a known sequence, a Barker code, in the middle of a series of random and noisy symbols.
The length 13 Barker code is defined as
(9)
The longer sequence y[n] is a series of 32 random samples from +1 and -1, followed by the same Barker code, followed by 32 more random +1 and -1 samples, with white Gaussian noise added to all of the samples. The Barker code c[n] is plotted in Figure 3 and the noisy sequence y[n] is plotted in Figure 4.
The cross correlation is plotted in Figure 5. The cross correlation has both positive and negative values which just indicate the polarity of the similarity between the two sequences (see previous post). However, the magnitude of the cross correlation removes the positive or negative sign and the maximum value of the cross correlation can be found from , plotted in Figure 6.
The location of the maximum sample can be found in Python with NumPy’s argmax() function:
import numpy as np
Ryc = np.correlate(y,c,mode='full')
T = np.argmax(Ryc)
where T = 44. The time index be validated by knowing the length of the correlating sequence c[n] (13 samples) and the time offset of c[n] into y[n] (32 samples), such that
(10)
where the -1 is needed for zero-based indexing.
Conclusion
Cross correlation is calculated over multiple time lags because it provides information about the similarity of two sequences as they are delayed in time with one another. Cross correlation can also be used to find a known sequence within a longer noisy sequence by finding the time index T of the maximum of the absolute value of the cross correlation .
More posts in the cross correlation series: