对你来说似乎很容易,但我被困在这里。这是C ++中用于从ASCII文件加载矩阵的函数。
void load_matrix(std::istream* is,
std::vector< std::vector<double> >* matrix,
const std::string& delim = " \t")
{
using namespace std;
string line;
string strnum;
// clear first
matrix->clear();
// parse line by line
while (getline(*is, line))
{
matrix->push_back(vector<double>());
for (string::const_iterator i = line.begin(); i != line.end(); ++ i)
{
// If we i is not a delim, then append it to strnum
if (delim.find(*i) == string::npos)
{
strnum += *i;
continue;
}
// if strnum is still empty, it means the previous char is also a
// delim (several delims appear together). Ignore this char.
if (strnum.empty())
continue;
// If we reach here, we got a number. Convert it to double.
double number;
istringstream(strnum) >> number;
matrix->back().push_back(number);
strnum.clear();
}
}
}
在我的代码中,我们从用户处获取文件名,如下所示有default.dat文件可用:
const char* filename1 = (argc > 1) ? argv[1] : "default.dat";
我想知道如何使用这个filename1作为参考文件的loadmatrix函数。
由于
答案 0 :(得分:5)
使用文件名构造一个std::ifstream
对象,然后将指向该对象的指针传递给loadmatrix
函数:std::ifstream
继承std::istream
,所以这个类型注意:< / p>
std::vector< std::vector<double> > matrix;
std::ifstream f( filename1 );
if ( !f ) {
// XXX Error handling
}
loadmatrix( &f, &matrix );