-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathev_samples_pcp.m
57 lines (37 loc) · 1.27 KB
/
ev_samples_pcp.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
clear;
config = ev_samples_config();
method = 'pcp';
all_d = config.d;
all_rho = config.rho;
all_rep = config.repetitions;
p = config.p;
n = config.n;
K = config.K;
%% add path
addpath('PROPACK/');
addpath('inexact_alm_rpca/');
%% compute EV for PCP
for k=1:length(all_rep)
rep = all_rep(k);
for j=1:length(all_d)
d = all_d(j);
for i=1:length(all_rho)
rho = all_rho(i);
fprintf('PCP: rep = %d, d = %d, rho = %.2f\n', rep, d, rho);
result_file = sprintf(config.result_file_format, method, method, d, rho, rep);
data_file = sprintf(config.data_file_format, d, rho, rep);
load(data_file);
U_all = cell2mat(U);
UUt = U_all * U_all';
traceUUt = trace(UUt);
tic;
[X, ~, ~] = inexact_alm_rpca(Z);
T = toc;
[UX, ~, VX] = svds(X, d);
ev = js_compute_EV(UX, UUt, traceUUt);
EV = ev * ones(1, n);
save(result_file, 'EV', 'T');
fprintf('save to %s\n', result_file);
end
end
end