Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
statistics.h
00001 #include "mbed.h" 00002 00003 class RunningStatistics { 00004 public: 00005 00006 RunningStatistics(int numSamples); 00007 double addSample(double newSample); 00008 double getAverage(); 00009 double getStandardDeviation(); 00010 void reset(); 00011 int getCount(); 00012 double getSum(); 00013 00014 double sum; 00015 double sumSquares; 00016 double average; 00017 double *samples; 00018 00019 int sampleSize; 00020 int currentNdx; 00021 int count; 00022 };
Generated on Thu Jul 14 2022 00:32:06 by
1.7.2