SHOGUN
v3.2.0
|
00001 /* 00002 * This program is free software; you can redistribute it and/or modify 00003 * it under the terms of the GNU General Public License as published by 00004 * the Free Software Foundation; either version 3 of the License, or 00005 * (at your option) any later version. 00006 * 00007 * Written (W) 2012 Sergey Lisitsyn 00008 * Copyright (C) 2012 Jiayu Zhou and Jieping Ye 00009 */ 00010 00011 #ifndef MALSAR_JOINT_FEATURE_LEARNING_H_ 00012 #define MALSAR_JOINT_FEATURE_LEARNING_H_ 00013 #include <shogun/lib/config.h> 00014 #ifdef HAVE_EIGEN3 00015 #include <shogun/lib/malsar/malsar_options.h> 00016 #include <shogun/features/DotFeatures.h> 00017 00018 namespace shogun 00019 { 00020 00027 malsar_result_t malsar_joint_feature_learning( 00028 CDotFeatures* features, 00029 double* y, 00030 double rho1, 00031 double rho2, 00032 const malsar_options& options); 00033 00034 }; 00035 #endif 00036 #endif /* ----- #ifndef MALSAR_JOINT_FEATURE_LEARNING_H_ ----- */ 00037