Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 9de10cc7 authored by hhakim's avatar hhakim
Browse files

Workaround memory issue in matfaust.Faust.svdtj().

parent 795ff00a
No related branches found
No related tags found
No related merge requests found
Pipeline #833875 skipped
......@@ -575,6 +575,9 @@ classdef FaustFactory
sign_S = sign(S);
S = S*sign_S;
Id = eye(size(S));
% copy the factors
W1 = get_factor(W1, 1:get_num_factors(W1));
W2 = get_factor(W2, 1:get_num_factors(W2));
U = W1(:,1:size(Id,1))*matfaust.Faust({Id(:,I),sign_S});
V = W2(:,1:size(Id,1))*matfaust.Faust(Id(:,I));
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment