SHOGUN  4.1.0
 全部  命名空间 文件 函数 变量 类型定义 枚举 枚举值 友元 宏定义  
eppVectorR.h
浏览该文件的文档.
1 /* This program is free software: you can redistribute it and/or modify
2  * it under the terms of the GNU General Public License as published by
3  * the Free Software Foundation, either version 3 of the License, or
4  * (at your option) any later version.
5  *
6  * This program is distributed in the hope that it will be useful,
7  * but WITHOUT ANY WARRANTY; without even the implied warranty of
8  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9  * GNU General Public License for more details.
10  *
11  * You should have received a copy of the GNU General Public License
12  * along with this program. If not, see <http://www.gnu.org/licenses/>.
13  *
14  * Copyright (C) 2009 - 2012 Jun Liu and Jieping Ye
15  */
16 
17 #ifndef EPPVECTORR_SLEP
18 #define EPPVECTORR_SLEP
19 
20 #include <shogun/lib/config.h>
21 
22 #include <stdlib.h>
23 #include <stdio.h>
24 #include <time.h>
25 #include <math.h>
26 
27 /*
28  min 1/2 ( ||x- u||_2^2 + ||t-v||_2^2 )
29  s.t. ||x_j||_2 <= t_j
30 
31  */
32 
33 void eppVectorR(double *x, double * t, double * u, double * v, double * ind, int n, int k){
34  int i, j;
35  double temp;
36 
37  /* compute the 2 norm of each group
38  */
39 
40  for(j=0;j<k;j++){
41  temp=0;
42  for(i=(int) (ind[j]); i< (int) (ind[j+1]); i++)
43  temp+= u[i]* u[i];
44  temp=sqrt(temp);
45  /*temp contains the 2-norm of of each row of u*/
46 
47  if(temp > fabs(v[j])){
48  t[j]=(temp + v[j])/2;
49 
50  for(i=(int) (ind[j]); i< (int) (ind[j+1]); i++)
51  x[i]= t[j] / temp * u[i];
52  }
53  else
54  if(temp <= v[j]){
55  t[j]=v[j];
56 
57  for(i=(int) (ind[j]); i< (int) (ind[j+1]); i++)
58  x[i]= u[i];
59  }
60  else{
61  t[j]=0;
62 
63  for(i=(int) (ind[j]); i< (int) (ind[j+1]); i++)
64  x[i]=0;
65  }
66 
67  }
68 }
69 #endif /* ----- #ifndef EPPVECTORR_SLEP ----- */
void eppVectorR(double *x, double *t, double *u, double *v, double *ind, int n, int k)
Definition: eppVectorR.h:33

SHOGUN 机器学习工具包 - 项目文档