Lines Matching refs:Eigen
1 namespace Eigen {
3 /** \eigenManualPage TopicStlContainers Using STL Containers with Eigen
9 Using STL containers on \ref TopicFixedSizeVectorizable "fixed-size vectorizable Eigen types", or c…
11 \li A 16-byte-aligned allocator must be used. Eigen does provide one ready for use: aligned_allocat…
12 \li If you want to use the std::vector container, you need to \#include <Eigen/StdVector>.
14 …size vectorizable Eigen types" and \ref TopicStructHavingEigenMembers "structures having such Eige…
18 …Eigen types", you need tell the container to use an allocator that will always allocate memory at …
22 std::map<int, Eigen::Vector4f>
26 std::map<int, Eigen::Vector4f, std::less<int>,
27 Eigen::aligned_allocator<std::pair<const int, Eigen::Vector4f> > >
33 …the Eigen::aligned_allocator type. In practice you \b must use the Eigen::aligned_allocator (not a…
37 #include<Eigen/StdVector>
39 std::vector<Eigen::Vector4f,Eigen::aligned_allocator<Eigen::Vector4f> >
42 \subsection vector_spec An alternative - specializing std::vector for Eigen types
44 …proach described above, you have the option to specialize std::vector for Eigen types requiring al…
45 The advantage is that you won't need to declare std::vector all over with Eigen::allocator. One dra…
51 #include<Eigen/StdVector>
54 std::vector<Eigen::Vector2d>
57 …Eigen::Vector4f>, some Eigen::Vector4f objects will be passed by value, which discards any alignme…