Added variable Test SideToF sensore
Dependencies: QEI2 chair_BNO055 PID Watchdog VL53L1X_Filter ros_lib_kinetic
Statistics/statistics.h
- Committer:
- sepham
- Date:
- 2019-07-02
- Revision:
- 36:24c12658bef1
- Parent:
- 31:06f2362caf12
File content as of revision 36:24c12658bef1:
#ifndef statistics_h //improvement: #ifndef _STATISTICS_h (purpose: good coding practice) #define statistics_h // #define _STATISTICS_h #include "mbed.h" // Capitalize the first letter of class name (good coding practice/how to distinguish class from function) class statistics { public: //Defining default constructor statistics(int* Input, double dataLength, int firstDataPoint = 0); //Defining methods double stdev(); double mean(); private: int* data; //pointer to data double dataLength; int firstDataPoint; }; #endif