Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 235 Bytes

README.md

File metadata and controls

15 lines (13 loc) · 235 Bytes

Stability

A simple class to determine the stability of an ongoing sampling

Usage

var tempReading = new Stable();
while (!tempReading.IsStable)
{
  tempReading.AddSample(4);
}
return tempReading.StableAverage;