Skip to content

Commit

Permalink
removed yet another tilde from the code, causing ft_checkcode to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
schoffelen committed Aug 31, 2024
1 parent 8870bfd commit e6033e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ft_denoise_amm.m
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@
Oinner = orth(inner_');
Ointer = orth(inter_');
C = Oinner'*Ointer;
[~,Sc,Z] = svd(C);
[tmp,Sc,Z] = svd(C);
noise = Ointer*Z;
s = diag(Sc);
noisevec = noise(:,1:sum(s>options.thr));
Expand Down

0 comments on commit e6033e2

Please sign in to comment.