Added a new acceptor based on targets in a data file

This commit is contained in:
Yohai Meiron 2020-08-16 21:27:20 -04:00
parent 3f4025d9fb
commit 582f1f4d8b
4 changed files with 52 additions and 16 deletions

View file

@ -3,7 +3,7 @@
#include <vector>
class Loadtxt {
public:
Loadtxt(std::string file_name, std::vector<int> cols);
Loadtxt(std::string file_name, std::vector<int> cols, int skiprows=0);
~Loadtxt();
std::vector<std::vector<double>> get_cols();
private: