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

Inheritance: BasicOutputField
ファイルを表示 Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
AddRange ( double low, double high, double value ) : void

Add a ranged mapped to a value.

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.

Method Details

AddRange() public method

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

Calculate() public method

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

OutputFieldEncode() public method

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

RowInit() public method

Not needed for this sort of output field.
public RowInit ( ) : void
return void