• Home
  • Raw
  • Download

Lines Matching +full:eigen +full:- +full:3

1 namespace Eigen {
12Eigen provides <a href="http://eigen.tuxfamily.org/dox-3.2/Eigen2SupportModes.html">Eigen2 support…
13 …till use them by first <a href="http://eigen.tuxfamily.org/dox-3.2/Eigen2ToEigen3.html">porting yo…
17 The USING_PART_OF_NAMESPACE_EIGEN macro has been removed. In Eigen 3, just do:
19 using namespace Eigen;
24 This is the single trickiest change between Eigen 2 and Eigen 3. It only affects code using \c std:…
26 Eigen 2's dot product was linear in the first variable. Eigen 3's dot product is linear in the seco…
31 <tr><th>Eigen 2</th><th>Eigen 3</th></th>
49 <tr><th>Eigen 2</th><th>Eigen 3</th></th>
93 c = a.array().abs().pow(3) * b.array().abs().sin();
97 c = (a.cwise().abs().cwise().pow(3)).cwise() * (b.cwise().abs().cwise().sin());
100 \section PartAndExtract Triangular and self-adjoint matrices
102 In Eigen 2 you had to play with the part, extract, and marked functions to deal with triangular and…
105 <tr><th>Eigen 2</th><th>Eigen 3</th></tr>
152 \section TriangularSolveInPlace Triangular in-place solving
155 <tr><th>Eigen 2</th><th>Eigen 3</th></tr>
162 …f Eigen 2's matrix decompositions have been renamed in Eigen 3, while some others have been remove…
166 <th>Eigen 2</th>
167 <th>Eigen 3</th>
187 <td>\code #include<Eigen/Eigenvalues> \endcode </td>
195 <tr><th>Eigen 2</th><th>Eigen 3</th><th>Notes</th></tr>
226 …robably a good idea to use the <a href="http://eigen.tuxfamily.org/dox-3.2/Eigen2SupportModes.html…
230 In Eigen 2, the Transform class didn't really know whether it was a projective or affine transforma…
232 The Transform3f (etc) typedefs are no more. In Eigen 3, the Transform typedefs explicitly refer to …
235 <tr><th>Eigen 2</th><th>Eigen 3</th><th>Notes</th></tr>
239 <td> Of course 3f is just an example here </td>
246 In Eigen all operations are performed in a lazy fashion except the matrix products which are always…
260 \section AlignMacros Alignment-related macros
262 …n renamed to EIGEN_ALIGN16. Don't be surprised, it's just that we switched to counting in bytes ;-)
264Eigen 3, but it has a new cousin: \link TopicPreprocessorDirectivesPerformance EIGEN_DONT_ALIGN_S…
268 A common issue with Eigen 2 was that when mapping an array with Map, there was no way to tell Eigen
281Eigen/StdVector\></tt> tweaked std::vector to automatically align elements. The problem was that t…
284 <tr><th>Eigen 2</th><th>Eigen 3</th></tr>
293 … becomes \c internal::sqrt(x). Of course it is not recommended to rely on Eigen's internal feature…