ts-aggregator/project_template/Median.h

20 lines
351 B
C
Raw Normal View History

2022-12-13 12:36:06 +04:00
#ifndef MEDIAN_H
#define MEDIAN_H
#include "Estimation.h"
using namespace std;
//
//
class Median :public Estimation {
public:
Median();
~Median();
double getValue(vector<double>);
vector<double> getValue(vector<double>, int);
double getValue(int, vector<double>, vector<double>);
double getValue(vector<double>, vector<double>);
};
#endif