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

A ranged mapped output field. This will scale the input so that it is between the high and low value.
상속: BasicOutputField, IRequireTwoPass
파일 보기 프로젝트 열기: encog/encog-silverlight-core

공개 메소드들

메소드 설명
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.

메소드 상세

Calculate() 공개 메소드

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

OutputFieldRangeMapped() 공개 메소드

Default constructor, used mainly for reflection.
public OutputFieldRangeMapped ( ) : System
리턴 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