Given block matrix $B = \begin{pmatrix} 0 & A^{T} \\ A & 0\end{pmatrix}$ and matrix $A$ has certain SVD decompostion: $A = VDU^{T}$. My goal is finding SVD decomposition of matrix B, using matrix $A$ decompostion.
I tried this way:
$B^{T}B = \begin{pmatrix} 0 & A^{T} \\ A & 0\end{pmatrix} \begin{pmatrix} 0 & A \\ A^{T}& 0\end{pmatrix} = \begin{pmatrix} (A^{T})^2 & 0 \\ 0 & A^2 \end{pmatrix} = UD^2U^{T}$.
$A = V\Sigma U^{T}$
I tried connect matrix $D$ and $\Sigma$, but matrix D is not equal to $\Sigma^2$ so I stacked.
Can anyone forward my decision in the right way?
Hints: