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

Specifies a range that might be included or excluded.
파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
InRange ( double value ) : bool

Is this value within the range.

SegregationRange ( ) : System

Default constructor for reflection.

SegregationRange ( double low, double high, bool include ) : System

Construct a segregation range.

메소드 상세

InRange() 공개 메소드

Is this value within the range.
public InRange ( double value ) : bool
value double The value to check.
리턴 bool

SegregationRange() 공개 메소드

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

SegregationRange() 공개 메소드

Construct a segregation range.
public SegregationRange ( double low, double high, bool include ) : System
low double The low end of the range.
high double The high end of the range.
include bool Specifies if the range should be included.
리턴 System