Concept Flow - Singular Value Decomposition (svd)
Start with matrix A
Compute U, S, V^T such that A = U * S * V^T
U: left singular vectors
S: singular values (diagonal matrix)
V^T: right singular vectors transposed
Use U, S, V^T for analysis or reconstruction
We start with a matrix A, then compute three matrices U, S, and V^T. These satisfy A = U * S * V^T. U and V^T contain special vectors, and S has singular values that tell us about A's structure.