sablib
Loading...
Searching...
No Matches
moving_median.h
Go to the documentation of this file.
1
6
7#ifndef __SABLIB_MOVING_MEDIAN_H__
8#define __SABLIB_MOVING_MEDIAN_H__
9
10#include <stdexcept>
11#include <vector>
12
13namespace sablib {
14
23const std::vector<double> MovingMedian(const std::vector<double> & y, const unsigned int n);
24
25}; // namespace sablib
26
27#endif // __SABLIB_MOVING_MEDIAN_H__
const std::vector< double > MovingMedian(const std::vector< double > &y, const unsigned int n)
Performs moving median smoothing.