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.
CircularBuffer.h
- Committer:
- clynamen
- Date:
- 2016-07-30
- Revision:
- 2:5811e080f41d
File content as of revision 2:5811e080f41d:
#pragma once
#include <vector>
//
class CircularBuffer {
public:
CircularBuffer(int size);
void push_back(float v);
float median();
private:
std::vector<float> values;
int size;
};