-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPCA2DL1S.m
67 lines (57 loc) · 1.27 KB
/
PCA2DL1S.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
60
61
62
63
64
65
66
67
function W=PCA2DL1S(x,rho,nPV)
% calculate projection vectors for 2DPCAL1-S
% Input:
% x, data
% rho, tuning parameter
% nPV, number of projection vectors
% Output:
% W, the obtained projection vectors
%
% 2018-4-23 18:33:56
lam=10^(-rho);
s=1; % set s as 1 since the script is adopted from G2DPCA
x0=x;
[~,d,n]=size(x);
% initialization by the results of 2DPCA
cov=zeros(d);
for i=1:n
cov=cov+x(:,:,i)'*x(:,:,i);
end
[V,D]=eig(cov);
[~,indx]=sort(diag(D),'descend');
V=V(:,indx);
W0=V;
% calculate multiple projection vectors
W=zeros(d,nPV);
for iPV=1:nPV
w=W0(:,iPV);
% the value of objective function
f=0;
for i=1:n
f=f+pnorm(x(:,:,i)*w,s)^s;
end
rsd=1;
while rsd>1e-4
fp=f;
% a key vector in G2DPCA problem
v=zeros(d,1);
for i=1:n
z=x(:,:,i);
v=v+z'*(abs(z*w).^(s-1).*sign(z*w));
end
% update rule
w=v.*abs(w)./(lam+abs(w));
w=w/norm(w);
% the value of objective function
f=0;
for i=1:n
f=f+pnorm(x(:,:,i)*w,s)^s;
end
rsd=abs(f-fp)/fp;
end
W(:,iPV)=w;
% deflation
for i=1:n
x(:,:,i)=x0(:,:,i)*(eye(d)-W*W');
end
end