本文介绍了使用Eigen库存储3D数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何使用Eigen C ++库存储3D数据?向量用于1D数据,矩阵用于2D数据,但是对于3D数据呢?还是有可能创建矩阵向量?
How can I store a 3D data using Eigen C++ library? Vector is for 1D data, Matrix is for 2D data but what is for a 3D data? Or is it possible to create a vector of matrix?
推荐答案
您可以使用Tensor模块.不过它还不稳定.
You could use the Tensor module. It is not yet stable though.
Eigen::Tensor<double, 3> epsilon(4,5,6); // 3 dimensions (4x5x6)
epsilon.setZero();
epsilon(0,1,2) = 1;
epsilon(0,2,1) = -1;
http://eigen.tuxfamily.org/index.php?title=Tensor_support
这篇关于使用Eigen库存储3D数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!