C# 클래스 Analysis.RunningStatistics

This class keeps track of the mean and variance of a stream of numbers. It keeps "running" tallies of these quantities, so its memory consumption does not increase as more values are added. This implementation is a c# port of the c++ code presented at http://www.johndcook.com/standard_deviation.html
파일 보기 프로젝트 열기: ColdMatter/EDMSuite 1 사용 예제들

공개 메소드들

메소드 설명
Clear ( ) : void
Push ( double x ) : void

메소드 상세

Clear() 공개 메소드

public Clear ( ) : void
리턴 void

Push() 공개 메소드

public Push ( double x ) : void
x double
리턴 void