C# 클래스 Encog.Normalize.Segregate.RangeSegregator

Range segregators are used to segregate data and include or exclude if it is within a certain range.
상속: ISegregator
파일 보기 프로젝트 열기: encog/encog-silverlight-core

공개 메소드들

메소드 설명
AddRange ( SegregationRange range ) : void

Add a range.

AddRange ( double low, double high, bool include ) : void

Add a range.

Init ( DataNormalization normalization ) : void

Init the object.

PassInit ( ) : void

Init for pass... nothing to do fo this class.

RangeSegregator ( ) : System

Default constructor for reflection.

RangeSegregator ( IInputField sourceField, bool include ) : System

Construct a range segregator.

ShouldInclude ( ) : bool

True if the current row should be included according to this segregator.

메소드 상세

AddRange() 공개 메소드

Add a range.
public AddRange ( SegregationRange range ) : void
range SegregationRange The range to add.
리턴 void

AddRange() 공개 메소드

Add a range.
public AddRange ( double low, double high, bool include ) : void
low double The low end of the range.
high double The high end of the range.
include bool Should this range be included.
리턴 void

Init() 공개 메소드

Init the object.
public Init ( DataNormalization normalization ) : void
normalization DataNormalization The normalization object that owns this range.
리턴 void

PassInit() 공개 메소드

Init for pass... nothing to do fo this class.
public PassInit ( ) : void
리턴 void

RangeSegregator() 공개 메소드

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

RangeSegregator() 공개 메소드

Construct a range segregator.
public RangeSegregator ( IInputField sourceField, bool include ) : System
sourceField IInputField The source field.
include bool Default action, if the data is not in any of the ranges, /// should it be included.
리턴 System

ShouldInclude() 공개 메소드

True if the current row should be included according to this segregator.
public ShouldInclude ( ) : bool
리턴 bool