Decompose matrices into U, Σ, and V^T components
Enter your matrix to compute its Singular Value Decomposition (SVD). This tool decomposes any m×n matrix A into A = UΣV^T.
Enter matrix elements separated by commas for rows and semicolons for columns (e.g., 1,2,3;4,5,6 for a 2×3 matrix)
Try these example matrices to understand SVD decomposition
Simple identity matrix decomposition
Matrix: 1,0;0,1
Size: 2×2
Decomposition of a rectangular matrix
Matrix: 1,2;3,4;5,6
Size: 3×2
Typical data matrix for dimensionality reduction
Matrix: 4,0,3;0,2,0
Size: 2×3
Diagonal matrix with distinct eigenvalues
Matrix: 3,0,0;0,2,0;0,0,1
Size: 3×3