We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0c7a8a commit 775c2d0Copy full SHA for 775c2d0
demo_successive_norm.m
@@ -24,7 +24,13 @@
24
25
results{3}.method = 'Row-Column Sym Standardize';
26
results{3}.output = standard_correlation_sym_sn(X)
27
+
28
+ disp(sprintf('Frob. MSE: Sigma_c - Sigma_sym = %.3f', ...
29
+ norm(abs(results{2}.output.corr-results{3}.output.corr),'fro')));
30
31
+ disp(sprintf('Frob. SSE: Sigma_c - Sigma_sym = %.3f', ...
32
+ sum(sum((results{2}.output.corr-results{3}.output.corr).^2)) ));
33
34
figure;
35
subplot(1,3,1);
36
imagesc(results{1}.output.corr); axis equal image;
0 commit comments