You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -46,9 +46,9 @@ The first line of the input file contains `M` followed by `N`. The second line c
46
46
47
47
#### Output Specification
48
48
Your program should perform SVD and PCA on the given input and store the results in the variables given in the program. We will check the correctness by calling the functions from the program. You should compute following matrices and values:
49
-
- U : M x M real matrix (to be computed by SVD)
50
-
- SIGMA : M x N diagonal matrix of positive real numbers ( to be computed by SVD)
51
-
- V_T : N x N real matrix (to be computed by SVD)
49
+
- U : N x N real matrix (to be computed by SVD)
50
+
- SIGMA : N x M diagonal matrix of positive real numbers ( to be computed by SVD)
51
+
- V_T : M x M real matrix (to be computed by SVD)
52
52
- K : number of columns (features) in reduced matrix D_HAT
0 commit comments