ts-aggregator/project_template/Mape.h
2022-12-13 12:36:06 +04:00

15 lines
351 B
C++

#ifndef MAPE_H
#define MAPE_H
#include "Estimation.h"
using namespace std;
// êðèòåðèé Mape. Íàñëåäóåòñÿ îò êëàññà Estimation.
// ðåàëèçóåò ìåòîä "ïîëó÷èòü çíà÷åíèå êðèòåðèÿ"
class Mape : public Estimation {
public:
Mape();
~Mape();
double getValue(vector<double>, vector<double>);
double getValue(int, vector<double>, vector<double>);
};
#endif