C# Class Encog.Normalize.Segregate.SegregationRange

Specifies a range that might be included or excluded.
Mostrar archivo Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
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.

Method Details

InRange() public method

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

SegregationRange() public method

Default constructor for reflection.
public SegregationRange ( ) : System
return System

SegregationRange() public method

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.
return System