comparison toolboxes/distance_learning/mlr/dual/dualWDiagMKL.m @ 0:e9a9cd732c1e tip

first hg version after svn
author wolffd
date Tue, 10 Feb 2015 15:05:51 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:e9a9cd732c1e
1 function W = dualWDiagMKL(alpha, Z, U, RHO, K)
2
3 global PsiR;
4 d = size(K, 1);
5 m = length(alpha);
6
7 nKernels = size(K,3);
8
9 W = Z - U;
10 for p = 1:nKernels
11 W(:,p) = W(:,p) - diag(K(:,:,p)) / RHO;
12 end
13
14 for i = 1:m
15 W = W + alpha(i) * PsiR{i} / RHO;
16 end
17
18 end