将CSV文件写入向量

时间:2011-02-09 22:41:35

标签: c++

我有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;
}

非常感谢!!!!

1 个答案:

答案 0 :(得分:2)