Neuroph

Uses of Class
org.neuroph.core.Connection

Packages that use Connection
org.neuroph.core Provides base classes and basic building components for neural networks. 
org.neuroph.core.input Provides common neuron input functions 
org.neuroph.nnet.comp Provides components for the specific neural network models. 
 

Uses of Connection in org.neuroph.core
 

Fields in org.neuroph.core with type parameters of type Connection
protected  java.util.Vector<Connection> Neuron.inputConnections
          Collection of neuron's input connections (connections to this neuron)
protected  java.util.Vector<Connection> Neuron.outConnections
          Collection of neuron's output connections (connections from this to other neurons)
 

Methods in org.neuroph.core that return Connection
 Connection Neuron.getConnectionFrom(Neuron fromNeuron)
          Gets input connection from the specified neuron * @param fromNeuron neuron connected to this neuron as input
 

Methods in org.neuroph.core that return types with arguments of type Connection
 java.util.Vector<Connection> Neuron.getInputConnections()
          Returns input connections for this neuron as Vector collection
 java.util.Iterator<Connection> Neuron.getInputsIterator()
          Returns Iterator interface for accessing input connections
 java.util.Vector<Connection> Neuron.getOutConnections()
          Returns output connections from this neuron
 

Methods in org.neuroph.core with parameters of type Connection
 void Neuron.addInputConnection(Connection connection)
          Adds the specified input connection
protected  void Neuron.addOutputConnection(Connection connection)
          Adds the specified output connection
 

Uses of Connection in org.neuroph.core.input
 

Method parameters in org.neuroph.core.input with type arguments of type Connection
 java.util.Vector<java.lang.Double> Diference.getOutput(java.util.Vector<Connection> inputConnections)
           
 double InputFunction.getOutput(java.util.Vector<Connection> inputConnections)
          Returns ouput value of this input function for the given neuron inputs
 java.util.Vector<java.lang.Double> WeightedInput.getOutput(java.util.Vector<Connection> inputs)
          Returns weighted input vector.
abstract  java.util.Vector<java.lang.Double> WeightsFunction.getOutput(java.util.Vector<Connection> inputs)
          Returns function's output
 

Uses of Connection in org.neuroph.nnet.comp
 

Subclasses of Connection in org.neuroph.nnet.comp
 class DelayedConnection
          Represents the connection between neurons which can delay signal.
 

Methods in org.neuroph.nnet.comp that return types with arguments of type Connection
 java.util.Vector<Connection> CompetitiveNeuron.getConnectionsFromOtherLayers()
          Returns collection of connections from other layers
 

Methods in org.neuroph.nnet.comp with parameters of type Connection
 void CompetitiveNeuron.addInputConnection(Connection connection)
          Adds input connection for this competitive neuron
 


Neuroph