Lines Matching refs:Eigen

1 namespace Eigen {
7 my_program: path/to/eigen/Eigen/src/Core/DenseStorage.h:44:
8 Eigen::internal::matrix_array<T, Size, MatrixOptions, Align>::internal::matrix_array()
21 …ce, the error message doesn't look helpful, as it refers to a file inside Eigen! However, since yo…
30 \section c1 Cause 1: Structures having Eigen objects as members
38 Eigen::Vector2d v;
45 …d to read this separate page: \ref TopicStructHavingEigenMembers "Structures Having Eigen Members".
47 …e, Eigen::Vector2d is only used as an example, more generally the issue arises for all \ref TopicF…
51 … Containers such as std::vector, std::map, ..., with Eigen objects, or with classes containing Eig…
54 std::vector<Eigen::Matrix2f> my_vector;
55 struct my_class { ... Eigen::Matrix2f m; ... };
59 then you need to read this separate page: \ref TopicStlContainers "Using STL Containers with Eigen".
61Eigen::Matrix2f is only used as an example, more generally the issue arises for all \ref TopicFixe…
63 \section c3 Cause 3: Passing Eigen objects by value
65 If some function in your code is getting an Eigen object passed by value, like this,
68 void func(Eigen::Vector4d v);
71 then you need to read this separate page: \ref TopicPassingByValue "Passing Eigen objects by value …
73 …e, Eigen::Vector4d is only used as an example, more generally the issue arises for all \ref TopicF…
82 Eigen::Quaternionf q;
89 …, Eigen::Quaternionf is only used as an example, more generally the issue arises for all \ref Topi…
93 \ref TopicFixedSizeVectorizable "fixed-size vectorizable Eigen objects" must absolutely be created …
95 Eigen normally takes care of these alignment issues for you, by setting an alignment attribute on t…