C# 클래스 Segmenter.Model.Threshold.ThresholdVariator

A rule for handle a threshold value
상속: IDefinable
파일 보기 프로젝트 열기: intervals-mining-lab/libiada-core 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
current double
leftBound double
rightBound double

공개 메소드들

메소드 설명
GetValue ( ) : double

The get value.

Next ( Criterion criterion ) : double

Calculates a new value of the threshold subject to taken criterion

SaveBest ( ) : void

Fix the best value

ThresholdVariator ( double leftBound, double rightBound ) : System

Initializes a new instance of the ThresholdVariator class.

메소드 상세

GetValue() 공개 메소드

The get value.
public GetValue ( ) : double
리턴 double

Next() 공개 추상적인 메소드

Calculates a new value of the threshold subject to taken criterion
public abstract Next ( Criterion criterion ) : double
criterion Criterion a rule subject to the threshold changes
리턴 double

SaveBest() 공개 메소드

Fix the best value
public SaveBest ( ) : void
리턴 void

ThresholdVariator() 공개 메소드

Initializes a new instance of the ThresholdVariator class.
public ThresholdVariator ( double leftBound, double rightBound ) : System
leftBound double /// The left bound of threshold. ///
rightBound double /// The right bound of threshold. ///
리턴 System

프로퍼티 상세

current 보호되어 있는 프로퍼티

The current.
protected double current
리턴 double

leftBound 보호되어 있는 프로퍼티

The left bound.
protected double leftBound
리턴 double

rightBound 보호되어 있는 프로퍼티

The right bound.
protected double rightBound
리턴 double