-
Notifications
You must be signed in to change notification settings - Fork 3
/
homework8.m
59 lines (50 loc) · 1.91 KB
/
homework8.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
%% ----- Homework 8 ----- %%
clc;
clear;
close all;
% Full HOSVD
load('homework8_HOOI.mat');
[tenS_hat,U_hat] = tensor.HOOI_full(tenX);
tenX_hat = tensor.n_mod_prod(tenS_hat,U_hat);
% Checking the orthogonality
disp('Checking the orthogonality propertie between the subtensors'...
'formed from the core tensor:')
reshape(tenS_hat(:,:,1),[],1)'*reshape(tenS_hat(:,:,4),[],1)
disp('Checking the NMSE (dB) between the original tensor X and'...
'its reconstruction:')
nmsex = (norm(tensor.unfold(tenX - tenX_hat,1),'fro')^2)...
/(norm(tensor.unfold(tenX,1),'fro')^2);
nmsex = 20*log10(nmsex)
disp('Checking the NMSE (dB) between the original core tensor S'...
'and its reconstruction:')
nmses = (norm(tensor.unfold(tenS - tenS_hat,1),'fro')^2)...
/(norm(tensor.unfold(tenS,1),'fro')^2);
nmses = 20*log10(nmses)
disp('Checking the NMSE (dB) between the original matrices and'...
'its estimations:')
nmseU1 = (norm(U1 - U_hat{1},'fro')^2)/(norm(U1,'fro')^2)
nmseU2 = (norm(U2 - U_hat{2},'fro')^2)/(norm(U2,'fro')^2)
nmseU3 = (norm(U3 - U_hat{3},'fro')^2)/(norm(U3,'fro')^2)
% Truncated HOSVD and Denoising
X = randn(8,4,10) + 1i*randn(8,4,10);
Y = randn(5,5,5) + 1i*randn(5,5,5);
[S1,U1] = tensor.HOOI_truncated(X);
multilinear_rank1 = size(S1);
[S2,U2] = tensor.HOOI_truncated(Y);
multilinear_rank2 = size(S2);
Xhat = tensor.n_mod_prod(S1,U1);
Yhat = tensor.n_mod_prod(S2,U2);
disp('Checking the NMSE (dB) between the original noisy tensor X and'...
its reconstruction:')
nmsex = (norm(tensor.unfold(X- Xhat,1),'fro')^2)...
/(norm(tensor.unfold(X,1),'fro')^2);
nmsex = 20*log10(nmsex)
disp('Checking the NMSE (dB) between the original noisy tensor Y'...
'and its reconstruction:')
nmsey = (norm(tensor.unfold(Y- Yhat,1),'fro')^2)...
/(norm(tensor.unfold(Y,1),'fro')^2);
nmsey = 20*log10(nmsey)
disp('The multilinear rank for the tensor X is:')
size(S1)
disp('The multilinear rank for the tensor Y is:')
size(S2)