-
Notifications
You must be signed in to change notification settings - Fork 1
/
G2DPCA.m
82 lines (72 loc) · 1.64 KB
/
G2DPCA.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
function W=G2DPCA(x,s,p,nPV)
% calculate projection vectors for G2DPCA
% Input:
% x, data
% s & p, tuning parameters
% nPV, number of projection vectors
% Output:
% W, the obtained projection vectors
%
% 2018-4-23 18:33:31
% check
if s<1 || p<=0
error('Please check s or p.');
end
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);
w=w/pnorm(w,p);
% 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 for different p values
if 0<p && p<1
w=diag((w.*w).^(1-p/2))*v;
w=w/pnorm(w,p);
elseif p==1
[~,j]=max(abs(v)); % index of the largest absolute value in v
w=zeros(d,1);
w(j)=sign(v(j));
elseif p<Inf
q=p/(p-1);
w=(abs(v).^(q-1)).*sign(v);
w=w/pnorm(w,p);
elseif p==Inf
w=sign(v);
end
% 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