-
Notifications
You must be signed in to change notification settings - Fork 0
02 MSSA
The first step in the MSSA is the same as for the SSA. One starts with the construction of the trajectory matrix. Although the construction procedure is quite similar, one should be aware of the size of the trajectory matrix. Let
The
Thus, each matrix
It is clear that the elements of the anti-diagonals are equal. This a Hankel matrix.
Finally, we obtain the resulting trajectory matrix
The second step is to decompose
- SVD Decomposition
This option is used primarly when the time series is not too long, because SVD is computationally intensive algorithm. It becomes critical especially for the MSSA, where the trajectory matrix becomes extremly high-dimensional, because of stacking of trajectory matrices for each time series. The formula for SVD is defined as follows:
where:
-
$U$ is an$L \times L$ unitary matrix containing the orthonormal set of left singular vectors of$X$ as columns -
$\Sigma$ is an$L \times K$ rectangular diagonal matrix containing singular values of$X$ in the descending order -
$V^T$ is an$Ks \times Ks$ unitary matrix containing the orthonormal set of right singular vectors of$X$ as columns.
The SVD of the trajectory matrix can be also formulated as follows:
where:
-
${\sigma_i,U_i,V_i}$ it the$i^{th}$ eigentriple of the SVD -
$\sigma_i$ is the$i^{th}$ singular value, is a scaling factor that determines the relative importance of the eigentriple -
$U_i$ is a vector representing the$i^{th}$ column of$U$ , which spans the column space of$X$ -
$V_i$ is a vector representing the$i^{th}$ column of$V$ , which spans the row space of$X$ -
$d$ , such that$d \leq L$ , is a rank of the trajectory matrix$X$ . It can be regarded as the instrinsic dimensionality of the time series' trajectory space -
$X_i=\sigma_iU_iV_i^T$ is the$i^{th}$ elementary matrix
-
Randomized SVD
This techinque is used for the approximation of the classic SVD and primarly used for SSA with large
$N$ and in the case of MSSA where$X$ is high-dimensional because of stacking of trajectory matrices of each considered time series. The main purpose of this technique is to reduce the dimensionality of$U$ and$V$ .