C# Class Encog.Normalize.Segregate.RangeSegregator

Range segregators are used to segregate data and include or exclude if it is within a certain range.
Inheritance: ISegregator
Afficher le fichier Open project: encog/encog-silverlight-core

Méthodes publiques

Méthode Description
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.

Method Details

AddRange() public méthode

Add a range.
public AddRange ( SegregationRange range ) : void
range SegregationRange The range to add.
Résultat void

AddRange() public méthode

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.
Résultat void

Init() public méthode

Init the object.
public Init ( DataNormalization normalization ) : void
normalization DataNormalization The normalization object that owns this range.
Résultat void

PassInit() public méthode

Init for pass... nothing to do fo this class.
public PassInit ( ) : void
Résultat void

RangeSegregator() public méthode

Default constructor for reflection.
public RangeSegregator ( ) : System
Résultat System

RangeSegregator() public méthode

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.
Résultat System

ShouldInclude() public méthode

True if the current row should be included according to this segregator.
public ShouldInclude ( ) : bool
Résultat bool