SHOGUN
v2.0.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 00021 malsar_result_t malsar_joint_feature_learning( 00022 CDotFeatures* features, 00023 double* y, 00024 double rho1, 00025 double rho2, 00026 const malsar_options& options); 00027 00028 }; 00029 #endif 00030 #endif /* ----- #ifndef MALSAR_JOINT_FEATURE_LEARNING_H_ ----- */ 00031