Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 0d6a430f authored by DIB Elian's avatar DIB Elian
Browse files

Updated factorize

parent 7299e189
No related branches found
No related tags found
No related merge requests found
...@@ -6,6 +6,8 @@ Mask = isnan(M); ...@@ -6,6 +6,8 @@ Mask = isnan(M);
M(Mask) = 0; M(Mask) = 0;
[U,S,V] = utils.svd_nsq(M); [U,S,V] = utils.svd_nsq(M);
U = -U;
V = -V;
B = U(:,1:k)*S(1:k,1:k); B = U(:,1:k)*S(1:k,1:k);
C = V(:,1:k)'; C = V(:,1:k)';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment