ts-aggregator/project_template/RMSE.h

14 lines
251 B
C
Raw Permalink Normal View History

2022-12-13 12:36:06 +04:00
#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