If we have a SVD of $A$ such as $U \Sigma V^*$ then $U$ and $V$ are transformation matrices with columns made from eigenvectors of $AA^*$ and $A^*A$ respectively. Now if I multiply a column of $U$ by $-1$, and call the new matrix $W$, I will still have a set of orthonormal eigenvectors of $AA^*$. Does this mean that my SVD relation will still hold ? i.e. $A = W \Sigma V^*$ ?
I was writing a code and multiplied a column by $-1$ and I couldn't reproduce $A$ from $W\Sigma V^*$, so I was wondering if I am missing something mathematically?