LinearNeuron.h

Go to the documentation of this file.
00001 #ifndef LINEARNEURON_H_
00002 #define LINEARNEURON_H_
00003 
00004 #include "AnalogPointNeuron.h"
00005 
00007 
00022 class LinearNeuron : public AnalogPointNeuron
00023 {
00024 
00025         SIMOBJECT( LinearNeuron, AdvancePhase::Two )
00026 
00027 public:
00028 
00029         LinearNeuron(
00030          float Rm=1,
00031          float Iinject=0,
00032          float Inoise=0
00033          ) {
00034                 this->Rm = Rm;
00035                 this->Iinject = Iinject;
00036                 this->Inoise = Inoise;
00037          };
00038 
00039 };
00040 
00041 #endif /*LINEARNEURON_H_*/

Generated on Wed Jul 9 16:34:39 2008 for PCSIM by  doxygen 1.5.5