Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
(一度に 1 つの要素を読み取るのではなく) 次のような方法でバイナリ ファイルから ublas ベクトルを読み取ることができないのはなぜですか。
boost::numeric::ublas::vector<double> floatVector(10); myFile.read( (char *)&vector, 10 * sizeof(double));
配列から ublas ベクトルを初期化する方法はありますか?
double d[10];