This class represents the map layer of a Kohonen Feature Map. It is a specific class for a Kohonen Feature Map neural net.
public class NeuronMatrix
java.lang.Object
public NeuronMatrix ( int size )
Creates a one-dimensional neuron matrix with size map neurons.
public NeuronMatrix ( int xSize, int ySize )
Creates a two-dimensional neuron matrix with xSize*ySize map neurons.
MapNeuron[] getMapNeurons ()
Returns all map neurons of a neuron matrix.
void init ( InputValue[] inputValues )
Initializes a neuron matrix with input values from inputValues.
int size ()
Returns the number of map neurons in this neuron matrix.
int xSize ()
Returns the number of map neurons in x-direction.
int ySize ()
Returns the number of map neurons in y-direction.