にいくつかのデータが保存されていstd::vector<std::vector<double>
ます。std::valarray
これを使用して、からを作成しましたstd::vector<std::vector<double>
。
std:valarray<double> corpX(corps_tmp[i].data(), corps_tmp[i].size());
この新しいものを使用して、corpXのstd:valarray<double>
を作成するので、を取得します。次に、それぞれの最初の2つの値も別の値に格納する必要があります。std::vector
std::vector<std:valarray<double>>
std::valarray
std::valarray
std:valarray<double> position_corps = \\ Concatenation of all the std::valarrays corpsX
どうすればこれを簡単な方法で達成できますか?ありがとうございました!