SHOGUN  4.2.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Jade.h
Go to the documentation of this file.
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 3 of the License, or
5  * (at your option) any later version.
6  *
7  * Written (W) 2013 Kevin Hughes
8  */
9 
10 #ifndef JADE_H_
11 #define JADE_H_
12 
13 #include <shogun/lib/config.h>
16 
17 namespace shogun
18 {
19 
20 class CFeatures;
21 
22 //#define DEBUG_JADE
23 
36 class CJade: public CICAConverter
37 {
38  public:
39 
41  CJade();
42 
44  virtual ~CJade();
45 
49  virtual CFeatures* apply(CFeatures* features);
50 
55 
57  virtual const char* get_name() const { return "Jade"; };
58 
59  protected:
60 
62  void init();
63 
64  private:
65 
67  SGMatrix<float64_t> m_cumulant_matrix;
68 };
69 }
70 #endif // JADE
class Jade
Definition: Jade.h:36
void init()
Definition: Jade.cpp:31
virtual const char * get_name() const
Definition: Jade.h:57
virtual CFeatures * apply(CFeatures *features)
Definition: Jade.cpp:46
SGMatrix< float64_t > get_cumulant_matrix() const
Definition: Jade.cpp:41
all of classes and functions are contained in the shogun namespace
Definition: class_list.h:18
class ICAConverter Base class for ICA algorithms
Definition: ICAConverter.h:26
The class Features is the base class of all feature objects.
Definition: Features.h:68
virtual ~CJade()
Definition: Jade.cpp:37

SHOGUN Machine Learning Toolbox - Documentation