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

NeuronLayer Struct Reference

#include <nkern_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 58 of file nkern_neuron.h.

int NeuronLayer::m_NumNeurons
 

Definition at line 57 of file nkern_neuron.h.

vector<Neuron> NeuronLayer::m_vecNeurons
 

Definition at line 56 of file nkern_neuron.h.

Referenced by NeuronLayer.


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