mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
1.3 KiB
1.3 KiB
Change Log Gauss
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
[0.2.1] - 2023-11-02
- update readme.md
- minor edits.
[0.2.0] - 2023-07-10
- 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] - 2023-07-07
- 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] - 2023-07-06
- initial version