Suddenly I am stuck at a question while studying Statistical signal processing: What are the differences between correlation sequence and matrix (can be auto/cross), and how are the two related? When do we use each of them?
For example, $E\{x[n+l] x[n]\} = r_{xx}[l]$ is the autocorrelation function for the discrete time signal $x[n]$, $l$ is the lag parameter. I am considering real-valued cases for simplicity.
$R_{XX} =$ \begin{bmatrix} E\{x[0]x[0]\} & E\{x[0]x[1]\} & \cdots & E\{x[0]x[N-1]\} \\ E\{x[1]x[0]\} & E\{x[1]x[1]\} & \cdots & E\{x[1]x[N-1]\} \\ \vdots & \vdots & \ddots & \vdots \\ E\{x[N-1]x[0]\} & E\{x[N-1]x[1]\} & \cdots & E\{x[N-1]x[N-1]\} \\ \end{bmatrix} is the auto-correlation matrix of a Random vector $\textbf{X}$.
Obviously, I can look at a discrete time signal $x[n]$ as a vector, where the value of signal at each instance $n = 0,1,\cdots N-1$ is a random variable.
Now, my question is how can I relate this matrix with the sequence for the same signal/vector $x$? Next, when is the sequence used and when is the matrix used?