Class InputNode

java.lang.Object
com.imsl.datamining.neural.Node
com.imsl.datamining.neural.InputNode
All Implemented Interfaces:
Serializable

public class InputNode extends Node
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 Details

    • setValue

      public void setValue(double value)
      Sets the value of this Node.
      Parameters:
      value - A double which specifies the new value of this InputNode.
    • getValue

      public double getValue()
      Returns the value of this node.
      Returns:
      A double which contains the value of this InputNode.