TarzaNN
TarzaNN neural network simulator
|
00001 #ifndef IDENTITY_FILTER_H_INCLUDED 00002 #define IDENTITY_FILTER_H_INCLUDED 00003 #include "Filter.h" 00004 #include "FilterFactory.h" 00005 00007 class IdentityFilter: public Filter { 00008 friend class FilterFactory; 00009 00010 protected: 00011 IdentityFilter () : Filter(1,1){ 00012 (*this)(0,0)=1.0; 00013 fType = F_IDENTITY; 00014 } 00015 }; 00016 #endif //IDENTITY_FILTER_H_INCLUDED