C# Class Encog.Util.Normalize.Output.BasicOutputField

Inheritance: IOutputField
ファイルを表示 Open project: encog/encog-silverlight-core

Public Methods

Method 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 method

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.
return double

Calculate() public abstract method

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.
return double

RowInit() public abstract method

Init this field for a new row.
public abstract RowInit ( ) : void
return void