Skip to content

Commit f303a71

Browse files
authored
Update README.md
1 parent b716cf1 commit f303a71

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# QuickStats version 1.2.4
1+
# QuickStats version 1.2.5
22
Descriptive statistics for Arduino float arrays
33

44
I developed this library to help quickly accomplish median and mode filtering when collecting sensor data. Functions in this library operate on an array of float variables, of dimension "m", and return the corresponding statistic. This library was originally created for a data smoothing strategy for float variables. Using a median or mode filtering strategy (opposed to mean filtering) is better at removing spikes from aberrant readings. The other functions (stdev, CV, etc.) were included for fun.
@@ -16,6 +16,7 @@ The functions available in the library include:
1616
stdev(samples[],m); // the sample standard deviation of elements in samples[m]\
1717
stderror(samples[],m); // the standard error of elements in samples[m]\
1818
CV(samples[],m); // the coefficient of variation in samples[m] in percent\
19+
SNR(samples[],m); // the signal-to-noise ratio in samples[m] in percent\
1920
bubbleSort(samples[],m); // sorting algorithm to arrange the elements in samples[m]\
2021
fabs(sample); // absolute value of a float, used in mode()\
2122
median(samples[],m); // the median of elements in samples[m]\

0 commit comments

Comments
 (0)