C# 클래스 Accord.Statistics.Moving.MovingCircularStatistics

Moving-window circular statistics.
상속: IMovingStatistics
파일 보기 프로젝트 열기: accord-net/framework

공개 메소드들

메소드 설명
Clear ( ) : void

Clears all measures previously computed.

MovingCircularStatistics ( int windowSize ) : System

Initializes a new instance of the MovingCircularStatistics class.

Push ( double value ) : void

Registers the occurrence of a value.

메소드 상세

Clear() 공개 메소드

Clears all measures previously computed.
public Clear ( ) : void
리턴 void

MovingCircularStatistics() 공개 메소드

Initializes a new instance of the MovingCircularStatistics class.
public MovingCircularStatistics ( int windowSize ) : System
windowSize int The size of the moving window.
리턴 System

Push() 공개 메소드

Registers the occurrence of a value.
public Push ( double value ) : void
value double The value to be registered.
리턴 void