mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
a4312c1b98
+ stricter interface
54 lines
996 B
C++
54 lines
996 B
C++
#ifndef Histogram_h
|
|
#define Histogram_h
|
|
//
|
|
// FILE: Histogram.h
|
|
// AUTHOR: Rob Tillaart
|
|
// VERSION: 0.1.03
|
|
// PURPOSE: Histogram library for Arduino
|
|
// DATE: 2012-11-10
|
|
//
|
|
// Released to the public domain
|
|
//
|
|
|
|
#include <stdlib.h>
|
|
#include <math.h>
|
|
#include <inttypes.h>
|
|
|
|
#if defined(ARDUINO) && ARDUINO >= 100
|
|
#include "Arduino.h"
|
|
#else
|
|
#include "WProgram.h"
|
|
#endif
|
|
|
|
#define HISTOGRAM_LIB_VERSION "0.1.04"
|
|
|
|
class Histogram
|
|
{
|
|
public:
|
|
Histogram(const uint8_t len, double *bounds);
|
|
~Histogram();
|
|
|
|
void clear();
|
|
void add(const double val);
|
|
void sub(const double val);
|
|
|
|
uint8_t size();
|
|
unsigned long count();
|
|
long bucket(const uint8_t idx);
|
|
|
|
double frequency(const uint8_t idx);
|
|
double PMF(const double val);
|
|
double CDF(const double val);
|
|
double VAL(const double prob);
|
|
uint8_t find(const double f);
|
|
// void strategy();
|
|
|
|
protected:
|
|
double * _bounds;
|
|
long * _data;
|
|
uint8_t _len;
|
|
unsigned long _cnt;
|
|
};
|
|
|
|
#endif
|
|
// END OF FILE
|