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

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

공개 메소드들

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

메소드 상세

Calculate() 공개 정적인 메소드

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

Calculate() 공개 추상적인 메소드

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

RowInit() 공개 추상적인 메소드

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