3 #ifndef __calculator_old_hpp
4 #define __calculator_old_hpp
12 #include <s2proc/trace.hpp>
15 typedef std::vector<std::vector<double> > Coeff_Matrix;
30 void SetRows(std::map<
int, std::map<int, Trace> > rows_map);
32 bool operator()(std::vector<int> &point_id, std::vector<double> &statics_value);
38 bool gauss_Prepare(Coeff_Matrix &coef_mat, std::vector<double> &result);
40 bool Remove_Trend(
const std::vector<int> &point_id, std::vector<double> &value);
44 std::map<int, std::map<int, Trace> > m_rows_map;
Definition: calculator_old.hpp:21