Concept Flow - Singular value decomposition (svd)
Start with matrix A
Compute U, S, V such that A = U*S*V'
U: orthogonal matrix (left singular vectors)
S: diagonal matrix (singular values)
V: orthogonal matrix (right singular vectors)
Use U, S, V for analysis or reconstruction
End
Start with matrix A, compute matrices U, S, V so that A equals U times S times V transpose, then use these matrices for further tasks.