我有8x14800矩阵,已从matlab中提取为CSV文件(“moves.mo”)。 我需要将此文件读入14800个向量,每个向量具有8个值。你能在这里导航我吗?
到目前为止,我在这里:
std::fstream inputfile;
inputfile.open("moves.mo");
std::vector< std::vector<int>* > vectorsmovesList;
while (!inputfile.eof()) {
std::string line;
getline (inputfile,line);
if(""!=line) { //if line is nonempty
std::vector<int>* mvec = new std::vector<int>(); //allocate a vector vec(N)
/* loop to read file has to go here */
}
inputfile.close();
}
return 0;
}
非常感谢!!!!