C# Class Encog.Normalize.Output.BasicOutputField

Provides very basic functionality for output fields. Primarily provides the ideal instance variable.
Inheritance: IOutputField
Afficher le fichier Open project: encog/encog-silverlight-core

Méthodes publiques

Méthode Description
Calculate ( double value, double min, double max, double hi, double lo ) : double

Calculate a ranged mapped value.

Calculate ( int subfield ) : double

Calculate the value for this field. Specify subfield of zero if this is a simple field.

RowInit ( ) : void

Init this field for a new row.

Method Details

Calculate() public static méthode

Calculate a ranged mapped value.
public static Calculate ( double value, double min, double max, double hi, double lo ) : double
value double The to map.
min double The minimum that the value param can be.
max double The maximum that the value param can be.
hi double The high value to map into.
lo double The low value to map into.
Résultat double

Calculate() public abstract méthode

Calculate the value for this field. Specify subfield of zero if this is a simple field.
public abstract Calculate ( int subfield ) : double
subfield int The subfield index.
Résultat double

RowInit() public abstract méthode

Init this field for a new row.
public abstract RowInit ( ) : void
Résultat void