Table of Contents

Class DoubleStats

Namespace
Netick
Assembly
Netick.dll
public class DoubleStats
Inheritance
DoubleStats
Inherited Members

Constructors

DoubleStats(int, double, bool)

public DoubleStats(int windowSize = 128, double warningThreshold = Infinity, bool lowIsBetter = true)

Parameters

windowSize int
warningThreshold double
lowIsBetter bool

Properties

Average

public double Average { get; }

Property Value

double

Data

public CircularList<double> Data { get; }

Property Value

CircularList<double>

Latest

public double Latest { get; }

Property Value

double

Max

public double Max { get; }

Property Value

double

Min

public double Min { get; }

Property Value

double

StdDeviation

public double StdDeviation { get; }

Property Value

double

WarningThreshold

public double WarningThreshold { get; }

Property Value

double

Methods

GetData()

public CircularList<double> GetData()

Returns

CircularList<double>

IsHealthy()

public bool IsHealthy()

Returns

bool

Reset()

public void Reset()

Update(double)

public void Update(double value)

Parameters

value double