org.neuroph.contrib
Class IACNeuron

java.lang.Object
  extended by org.neuroph.core.Neuron
      extended by org.neuroph.contrib.IACNeuron
All Implemented Interfaces:
java.io.Serializable

public class IACNeuron
extends Neuron

Neuron for Interactive Activation Neural Network.

Author:
Zoran Sevarac
See Also:
IACNetwork, Serialized Form

Field Summary
 
Fields inherited from class org.neuroph.core.Neuron
error, inputConnections, inputFunction, netInput, outConnections, output, parentLayer, transferFunction
 
Constructor Summary
IACNeuron()
           
 
Method Summary
 void calculate()
          Calculates neuron output
 void setInput(double input)
          Sets total net input for this cell
 
Methods inherited from class org.neuroph.core.Neuron
addInputConnection, addInputConnection, addInputConnection, addOutputConnection, getConnectionFrom, getError, getInputConnections, getInputFunction, getInputsIterator, getNetInput, getOutConnections, getOutput, getParentLayer, getTransferFunction, getWeightsVector, hasInputConnections, randomizeInputWeights, removeInputConnectionFrom, reset, setError, setInputFunction, setOutput, setParentLayer, setTransferFunction
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IACNeuron

public IACNeuron()
Method Detail

setInput

public void setInput(double input)
Sets total net input for this cell

Overrides:
setInput in class Neuron
Parameters:
input - input value

calculate

public void calculate()
Calculates neuron output

Overrides:
calculate in class Neuron