Neuroph

Uses of Class
org.neuroph.core.input.InputFunction

Packages that use InputFunction
org.neuroph.core Provides base classes and basic building components for neural networks. 
org.neuroph.nnet.comp Provides components for the specific neural network models. 
 

Uses of InputFunction in org.neuroph.core
 

Fields in org.neuroph.core declared as InputFunction
protected  InputFunction Neuron.inputFunction
          Input function for this neuron
 

Methods in org.neuroph.core that return InputFunction
 InputFunction Neuron.getInputFunction()
          Returns input function
 

Methods in org.neuroph.core with parameters of type InputFunction
 void Neuron.setInputFunction(InputFunction inputFunction)
          Sets input function
 

Constructors in org.neuroph.core with parameters of type InputFunction
Neuron(InputFunction inputFunction, TransferFunction transferFunction)
          Creates an instance of Neuron with the specified input and transfer functions.
 

Uses of InputFunction in org.neuroph.nnet.comp
 

Constructors in org.neuroph.nnet.comp with parameters of type InputFunction
CompetitiveNeuron(InputFunction inputFunction, TransferFunction transferFunction)
          Creates an instance of CompetitiveNeuron with specified input and transfer functions
DelayedNeuron(InputFunction inputFunction, TransferFunction transferFunction)
          Creates an instance of neuron which can delay output
InputOutputNeuron(InputFunction inFunc, TransferFunction transFunc)
          Creates an instance of neuron for Hopfield network with specified input and transfer functions
ThresholdNeuron(InputFunction inputFunction, TransferFunction transferFunction)
          Creates a neuron with threshold behaviour, and with the specified input and transfer functions.
 


Neuroph