Il existe de nombreux liens pour inverser la tendance, mais je ne parviens pas à trouver un vecteur std :: à partir d'une matrice Eigen :: Matrix ou Eigen :: VectorXd dans mon cas spécifique.
vector<int> vec(mat.data(), mat.data() + mat.rows() * mat.cols());
Vous ne pouvez pas transtyper, mais vous pouvez facilement copier les données:
VectorXd v1;
v1 = ...;
vector<double> v2;
v2.resize(v1.size());
VectorXd::Map(&v2[0], v1.size()) = v1;
Vous pouvez le faire depuis et vers le vecteur propre:
//init a first vector
std::vector<float> v1;
v1.Push_back(0.5);
v1.Push_back(1.5);
v1.Push_back(2.5);
v1.Push_back(3.5);
//from v1 to an eignen vector
float* ptr_data = &v1[0];
Eigen::VectorXf v2 = Eigen::Map<Eigen::VectorXf, Eigen::Unaligned>(v1.data(), v1.size());
//from the eigen vector to the std vector
std::vector<float> v3(&v2[0], v2.data()+v2.cols()*v2.rows());
//to check
for(int i = 0; i < v1.size() ; i++){
std::cout << std::to_string(v1[i]) << " | " << std::to_string(v2[i]) << " | " << std::to_string(v3[i]) << std::endl;
}