test_infomax_ica.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00039 #include "infomax_ica.h"
00040 #include "fastlib/base/test.h"
00041
00042 class TestInfomaxICA {
00043
00044 public:
00045 void Init(){
00046
00047
00048 data::Load("../../fastlib/fake.arff",&testdata_);
00049 lambda_=0.001;
00050 b_=5;
00051 epsilon_=0.001;
00052 ica_ = new InfomaxICA(lambda_,b_,epsilon_);
00053 }
00054
00055 void Destruct(){
00056 delete ica_;
00057 }
00058
00059 void TestCov(){
00060 ica_->sampleCovariance(testdata_);
00061 }
00062
00063 void TestSqrtm(){
00064 Matrix intermediate = ica_->sampleCovariance(testdata_);
00065 ica_->sqrtm(intermediate);
00066 }
00067
00068 void TestICA(){
00069 Matrix unmixing;
00070 ica_->applyICA(testdata_);
00071 ica_->getUnmixing(unmixing);
00072 ica_->displayMatrix(unmixing);
00073 }
00074
00075 void TestAll() {
00076 TestSqrtm();
00077 TestCov();
00078 TestICA();
00079 }
00080
00081 private:
00082 InfomaxICA *ica_;
00083 Matrix testdata_;
00084 double lambda_;
00085 int b_;
00086 double epsilon_;
00087 };