The Encog Project

org.encog.normalize.output
Interface OutputFieldGroup

All Known Implementing Classes:
BasicOutputFieldGroup, MultiplicativeGroup, ZAxisGroup

public interface OutputFieldGroup

Output fields can be grouped together if they are calculated together. This interface defines how a field group works.


Method Summary
 void addField(OutputFieldGrouped field)
          Add an output field to the group.
 java.util.Collection<OutputFieldGrouped> getGroupedFields()
           
 void rowInit()
          Init the group for a new row.
 

Method Detail

addField

void addField(OutputFieldGrouped field)
Add an output field to the group.

Parameters:
field - The field to add.

getGroupedFields

java.util.Collection<OutputFieldGrouped> getGroupedFields()
Returns:
All of the output fields in this group.

rowInit

void rowInit()
Init the group for a new row.


The Encog Project