Main Page   Namespace List   Alphabetical List   Compound List   File List   Compound Members   File Members  

NeuronLayer Struct Reference

#include <neuron.h>

List of all members.

Public Methods

 NeuronLayer (int NumNeurons, int NumInputsPerNeuron)

Public Attributes

vector< Neuronm_vecNeurons
int m_NumNeurons
int m_NumInputsPerNeuron


Constructor & Destructor Documentation

NeuronLayer::NeuronLayer int    NumNeurons,
int    NumInputsPerNeuron
 

Definition at line 41 of file neuron.cpp.

References m_vecNeurons.

00042                                                   : m_NumNeurons(NumNeurons), 
00043                                                     m_NumInputsPerNeuron(NumInputsPerNeuron)
00044 {
00045     for (int i=0; i<NumNeurons; i++)
00046 
00047         m_vecNeurons.push_back(Neuron(NumInputsPerNeuron));
00048 }


Member Data Documentation

int NeuronLayer::m_NumInputsPerNeuron
 

Definition at line 52 of file neuron.h.

int NeuronLayer::m_NumNeurons
 

Definition at line 51 of file neuron.h.

vector<Neuron> NeuronLayer::m_vecNeurons
 

Definition at line 50 of file neuron.h.

Referenced by NeuronLayer.


The documentation for this struct was generated from the following files:
Generated on Mon Jun 9 19:13:26 2003 for NeReK Documentation by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002