C# Class Encog.Normalize.Output.OutputFieldRangeMapped

A ranged mapped output field. This will scale the input so that it is between the high and low value.
Inheritance: BasicOutputField, IRequireTwoPass
Datei anzeigen Open project: encog/encog-silverlight-core

Public Methods

Method Description
Calculate ( int subfield ) : double

Calculate this output field.

OutputFieldRangeMapped ( ) : System

Default constructor, used mainly for reflection.

OutputFieldRangeMapped ( IInputField field, double low, double high ) : System

Construct a range mapped output field.

RowInit ( ) : void

Not needed for this sort of output field.

Method Details

Calculate() public method

Calculate this output field.
public Calculate ( int subfield ) : double
subfield int Not used.
return double

OutputFieldRangeMapped() public method

Default constructor, used mainly for reflection.
public OutputFieldRangeMapped ( ) : System
return System

OutputFieldRangeMapped() public method

Construct a range mapped output field.
public OutputFieldRangeMapped ( IInputField field, double low, double high ) : System
field IInputField The input field to base this on.
low double The low value.
high double The high value.
return System

RowInit() public method

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