Skip to content

Releases: RobTillaart/Gauss

0.2.1 release

02 Nov 14:56
a068b10
Compare
Choose a tag to compare
update readme.md (#5)

- update readme.md
- minor edits.

0.2.0 release

10 Jul 18:16
7c1d89d
Compare
Choose a tag to compare
improve performance (#4)

- improve performance => faster lookup.
  - removed __z[] saves 136 bytes RAM
- remove MultiMap dependency.
- - remove **\_stddev** as **\_reciprokeSD** holds same information.
- add **float P_outside(float f, float g)** 
  - returns **P(x < f) + P(g < x)** under condition (f < g).
- add **float denormalize(float value)** (reverse normalize).
- add examples DS18B20 and HX711 and BMI
- update readme.md
- minor edits.

0.1.1 release

08 Jul 12:22
89f2fe0
Compare
Choose a tag to compare
improve library (#2)

- improve performance => reciprokeSD = 1.0/stddev
- update readme.md
  - add performance section (UNO / ESP32)
  - elaborated future section
- generated a more precise lookup table (8 decimals)
- update unit tests
- add default parameters to **bool begin(float mean = 0, float stddev = 1)**
  - allow negative **stddev** but return false if stddev <= 0.
- add **float getMean()** convenience function.
- add **float getStdDev()** convenience function.
- clean up a bit

0.1.0 release

07 Jul 16:26
7bb902f
Compare
Choose a tag to compare
initial version (#1)

* initial version