Neuroph

org.neuroph.core.input
Class WeightedInput

java.lang.Object
  extended by org.neuroph.core.input.WeightsFunction
      extended by org.neuroph.core.input.WeightedInput
All Implemented Interfaces:
java.io.Serializable

public class WeightedInput
extends WeightsFunction
implements java.io.Serializable

The WeightedInput class implements weighted input operation for neuron InputFunction.

See Also:
Serialized Form

Field Summary
private static long serialVersionUID
          The class fingerprint that is set to indicate serialization compatibility with a previous version of the class.
 
Constructor Summary
WeightedInput()
           
 
Method Summary
 java.util.Vector<java.lang.Double> getOutput(java.util.Vector<Connection> inputs)
          Returns weighted input vector.
 
Methods inherited from class org.neuroph.core.input.WeightsFunction
toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

serialVersionUID

private static final long serialVersionUID
The class fingerprint that is set to indicate serialization compatibility with a previous version of the class.

See Also:
Constant Field Values
Constructor Detail

WeightedInput

public WeightedInput()
Method Detail

getOutput

public java.util.Vector<java.lang.Double> getOutput(java.util.Vector<Connection> inputs)
Returns weighted input vector.

Specified by:
getOutput in class WeightsFunction
Parameters:
inputs - Reference to neuron's input connections.
Returns:
weighted input vector

Neuroph