I have a 3D C++ vector of vectors defined as follows.
vector<vector<vector<float>>> vec3DCpp;
vec3DCpp has a variable size in each of its dimension. I am trying to find a data type in Eigen similar to vectors of vectors in C++. Does Eigen have anything similar to this? If it does, how would mapping vec3DCpp to vec3DEigen look like?
If this is not possible, is there anyway to convert/map vec3DCpp to an Eigen variable?
I would appreciate any help.