Table of Contents

Class FloatStats

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

Constructors

FloatStats(int, float, bool)

public FloatStats(int windowSize = 128, float warningThreshold = Infinity, bool lowIsBetter = true)

Parameters

windowSize int
warningThreshold float
lowIsBetter bool

Properties

Average

public float Average { get; }

Property Value

float

Data

public CircularList<float> Data { get; }

Property Value

CircularList<float>

Latest

public float Latest { get; }

Property Value

float

Max

public float Max { get; }

Property Value

float

Min

public float Min { get; }

Property Value

float

StdDeviation

public float StdDeviation { get; }

Property Value

float

StdDeviation2

public float StdDeviation2 { get; }

Property Value

float

WarningThreshold

public float WarningThreshold { get; }

Property Value

float

Methods

GetData()

public CircularList<float> GetData()

Returns

CircularList<float>

IsHealthy()

public bool IsHealthy()

Returns

bool

Reset()

public void Reset()

Update(float)

public void Update(float value)

Parameters

value float