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

14 lines
251 B
C++

#ifndef RMSE_H
#define RMSE_H
#include "Estimation.h"
using namespace std;
class Rmse : public Estimation {
public:
Rmse();
~Rmse();
double getValue(vector<double>, vector<double>);
double getValue(int, vector<double>, vector<double>);
};
#endif