I am solving a SVD computatiob question.
The following matrix is given: A=:
$$\begin{bmatrix}
1.5 & 0.5 & 0&0 \\
0.5 & 1.5 & 0 & 0\\
0 & 0 & 1.5 & 0.5\\
0&0 & 0.5 & 1.5
\end{bmatrix}$$
I have taken the SVD(A) = [ U S V]. My computation of the matrix S is the same with Matlab, V and U are different.
I have checked a solution in the book, my result is correct.
$$V=\begin{bmatrix} 0.5 & 0.5 & 0.5&0.5 \\ 0.5 & 0.5 & -0.5 & -0.5\\ 0.5 & -0.5 & -0.5& 0.5\\ 0.5&-0.5 & 0.5 & -0.5 \end{bmatrix}$$
Is there another way, how to find V matrix from SVD in Matlab?
V? – Noel Miller Oct 21 '19 at 07:49