Neural Network Software

com.practicalstudies.neural
Interface Adder

All Known Implementing Classes:
LinearAdder

public interface Adder

Interface representing a method weighting the inputs to a Node as represented by a series of Node-WeightedConnection pairs.

Author:
Michael Wax

Method Summary
 double getWeightedInput(java.util.List inputConnections)
          Function returning the weighted inputs of the input WeightedConnections to a Node
 

Method Detail

getWeightedInput

public double getWeightedInput(java.util.List inputConnections)
Function returning the weighted inputs of the input WeightedConnections to a Node

Parameters:
inputConnections - an ArrayList of the WeightedConnection inputs to this Node
Returns:
the weighted input

PracticalStudies.com