Package com.imsl.datamining.neural
Class InputNode
java.lang.Object
com.imsl.datamining.neural.Node
com.imsl.datamining.neural.InputNode
- All Implemented Interfaces:
Serializable
A
Node in the InputLayer.
InputNodes are not created directly. Instead factory methods
in InputLayer are used to create InputNodes within
the InputLayer. For example, InputLayer.createInput()
creates a single InputNode.
- See Also:
-
Method Summary
-
Method Details
-
setValue
public void setValue(double value) Sets the value of thisNode.- Parameters:
value- Adoublewhich specifies the new value of thisInputNode.
-
getValue
public double getValue()Returns the value of thisnode.- Returns:
- A
doublewhich contains the value of thisInputNode.
-