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

A direct output field, will simply pass the input value to the output.
상속: BasicOutputField
파일 보기 프로젝트 열기: encog/encog-silverlight-core

공개 메소드들

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

Calculate the value for this field. This will simply be the value from the input field.

OutputFieldDirect ( ) : System

Default constructor for reflection.

OutputFieldDirect ( IInputField sourceField ) : System

Construct a direct output field.

RowInit ( ) : void

Not needed for this sort of output field.

메소드 상세

Calculate() 공개 메소드

Calculate the value for this field. This will simply be the value from the input field.
public Calculate ( int subfield ) : double
subfield int Not used, as this output field type does not /// support subfields.
리턴 double

OutputFieldDirect() 공개 메소드

Default constructor for reflection.
public OutputFieldDirect ( ) : System
리턴 System

OutputFieldDirect() 공개 메소드

Construct a direct output field.
public OutputFieldDirect ( IInputField sourceField ) : System
sourceField IInputField The source field to pass directly on.
리턴 System

RowInit() 공개 메소드

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