C# Class Encog.Normalize.Output.Mapped.OutputFieldEncode

An encoded output field. This allows ranges of output values to be mapped to specific values.
Inheritance: BasicOutputField
Afficher le fichier Open project: encog/encog-silverlight-core

Méthodes publiques

Méthode Description
Calculate ( int subfield ) : double

Calculate the value for this field.

OutputFieldEncode ( IInputField sourceField ) : System

Construct an encoded field.

RowInit ( ) : void

Not needed for this sort of output field.

addRange ( double low, double high, double value ) : void

Add a ranged mapped to a value.

Method Details

Calculate() public méthode

Calculate the value for this field.
public Calculate ( int subfield ) : double
subfield int Not used.
Résultat double

OutputFieldEncode() public méthode

Construct an encoded field.
public OutputFieldEncode ( IInputField sourceField ) : System
sourceField IInputField The field that this is based on.
Résultat System

RowInit() public méthode

Not needed for this sort of output field.
public RowInit ( ) : void
Résultat void

addRange() public méthode

Add a ranged mapped to a value.
public addRange ( double low, double high, double value ) : void
low double The low value for the range.
high double The high value for the range.
value double The value that the field should produce for this range.
Résultat void