C# 클래스 Encog.Util.Normalize.Output.OutputFieldRangeMapped

상속: BasicOutputField, IRequireTwoPass
파일 보기 프로젝트 열기: encog/encog-silverlight-core

공개 메소드들

메소드 설명
Calculate ( int subfield ) : double

Calculate this output field.

ConvertBack ( double data ) : double

Convert a number back after its been normalized.

OutputFieldRangeMapped ( ) : System

Default constructor, used mainly for reflection.

OutputFieldRangeMapped ( IInputField f ) : System

Construct the output field with -1 for low and +1 for high.

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

Construct a range mapped output field.

RowInit ( ) : void

Not needed for this sort of output field.

메소드 상세

Calculate() 공개 메소드

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

ConvertBack() 공개 메소드

Convert a number back after its been normalized.
public ConvertBack ( double data ) : double
data double The number to convert back.
리턴 double

OutputFieldRangeMapped() 공개 메소드

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

OutputFieldRangeMapped() 공개 메소드

Construct the output field with -1 for low and +1 for high.
public OutputFieldRangeMapped ( IInputField f ) : System
f IInputField The input field.
리턴 System

OutputFieldRangeMapped() 공개 메소드

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.
리턴 System

RowInit() 공개 메소드

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