Searched refs:Eigen (Results 1 - 25 of 621) sorted by relevance

1234567891011>>

/external/eigen/doc/
H A DUsingIntelMKL.dox29 * Content : Documentation on the use of Intel MKL through Eigen
33 namespace Eigen {
35 /** \page TopicUsingIntelMKL Using Intel® Math Kernel Library from Eigen
37 \section TopicUsingIntelMKL_Intro Eigen and Intel® Math Kernel Library (Intel® MKL)
39 Since Eigen version 3.1 and later, users can benefit from built-in Intel MKL optimizations with an installed copy of Intel MKL 10.3 (or later).
45 Using Intel MKL through Eigen is easy:
46 -# define the \c EIGEN_USE_MKL_ALL macro before including any Eigen's header
50 When doing so, a number of Eigen's algorithms are silently substituted with calls to Intel MKL routines.
69 The breadth of Eigen functionality covered by Intel MKL is listed in the table below.
115 <tr><td>Eigen
[all...]
/external/ceres-solver/internal/ceres/generated/
H A Dpartitioned_matrix_view_d_d_d.cc50 template class PartitionedMatrixView<Eigen::Dynamic, Eigen::Dynamic, Eigen::Dynamic>;
H A Dschur_eliminator_d_d_d.cc50 template class SchurEliminator<Eigen::Dynamic, Eigen::Dynamic, Eigen::Dynamic>;
H A Dpartitioned_matrix_view_2_d_d.cc54 template class PartitionedMatrixView<2, Eigen::Dynamic, Eigen::Dynamic>;
H A Dschur_eliminator_2_d_d.cc54 template class SchurEliminator<2, Eigen::Dynamic, Eigen::Dynamic>;
H A Dpartitioned_matrix_view_2_2_d.cc54 template class PartitionedMatrixView<2, 2, Eigen::Dynamic>;
H A Dpartitioned_matrix_view_2_3_d.cc54 template class PartitionedMatrixView<2, 3, Eigen::Dynamic>;
H A Dpartitioned_matrix_view_2_4_d.cc54 template class PartitionedMatrixView<2, 4, Eigen::Dynamic>;
H A Dpartitioned_matrix_view_4_4_d.cc54 template class PartitionedMatrixView<4, 4, Eigen::Dynamic>;
H A Dschur_eliminator_2_2_d.cc54 template class SchurEliminator<2, 2, Eigen::Dynamic>;
H A Dschur_eliminator_2_3_d.cc54 template class SchurEliminator<2, 3, Eigen::Dynamic>;
H A Dschur_eliminator_2_4_d.cc54 template class SchurEliminator<2, 4, Eigen::Dynamic>;
H A Dschur_eliminator_4_4_d.cc54 template class SchurEliminator<4, 4, Eigen::Dynamic>;
/external/ceres-solver/include/ceres/internal/
H A Deigen.h34 #include "Eigen/Core"
38 typedef Eigen::Matrix<double, Eigen::Dynamic, 1> Vector;
39 typedef Eigen::Matrix<double,
40 Eigen::Dynamic,
41 Eigen::Dynamic,
42 Eigen::RowMajor> Matrix;
43 typedef Eigen::Map<Vector> VectorRef;
44 typedef Eigen::Map<Matrix> MatrixRef;
45 typedef Eigen
[all...]
/external/eigen/lapack/
H A Dlapack_common.h1 // This file is part of Eigen, a lightweight C++ template library
19 typedef Eigen::Map<Eigen::Transpositions<Eigen::Dynamic,Eigen::Dynamic,int> > PivotsType;
/external/eigen/test/
H A Dmetis_support.cpp1 // This file is part of Eigen, a lightweight C++ template library
6 // Eigen is free software; you can redistribute it and/or
16 // Eigen is distributed in the hope that it will be useful, but WITHOUT ANY
23 // Eigen. If not, see <http://www.gnu.org/licenses/>.
25 #include <Eigen/SparseLU>
26 #include <Eigen/MetisSupport>
27 #include <unsupported/Eigen/SparseExtra>
/external/eigen/demos/opengl/
H A Dcamera.h1 // This file is part of Eigen, a lightweight C++ template library
13 #include <Eigen/Geometry>
22 inline Frame(const Eigen::Vector3f& pos = Eigen::Vector3f::Zero(), argument
23 const Eigen::Quaternionf& o = Eigen::Quaternionf())
32 Eigen::Quaternionf orientation;
33 Eigen::Vector3f position;
60 void setPosition(const Eigen::Vector3f& pos);
61 inline const Eigen
[all...]
/external/eigen/doc/examples/
H A DTutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp2 #include <Eigen/Dense>
5 using namespace Eigen;
9 Eigen::MatrixXf m(2,4);
10 Eigen::VectorXf v(2);
H A Dclass_Block.cpp1 #include <Eigen/Core>
3 using namespace Eigen;
7 Eigen::Block<Derived>
10 return Eigen::Block<Derived>(m.derived(), 0, 0, rows, cols);
14 const Eigen::Block<const Derived>
17 return Eigen::Block<const Derived>(m.derived(), 0, 0, rows, cols);
H A Dclass_FixedBlock.cpp1 #include <Eigen/Core>
3 using namespace Eigen;
7 Eigen::Block<Derived, 2, 2>
10 return Eigen::Block<Derived, 2, 2>(m.derived(), 0, 0);
14 const Eigen::Block<const Derived, 2, 2>
17 return Eigen::Block<const Derived, 2, 2>(m.derived(), 0, 0);
H A Dclass_FixedVectorBlock.cpp1 #include <Eigen/Core>
3 using namespace Eigen;
7 Eigen::VectorBlock<Derived, 2>
10 return Eigen::VectorBlock<Derived, 2>(v.derived(), 0);
14 const Eigen::VectorBlock<const Derived, 2>
17 return Eigen::VectorBlock<const Derived, 2>(v.derived(), 0);
H A Dclass_VectorBlock.cpp1 #include <Eigen/Core>
3 using namespace Eigen;
7 Eigen::VectorBlock<Derived>
10 return Eigen::VectorBlock<Derived>(v.derived(), start, end-start);
14 const Eigen::VectorBlock<const Derived>
17 return Eigen::VectorBlock<const Derived>(v.derived(), start, end-start);
H A DDenseBase_middleCols_int.cpp1 #include <Eigen/Core>
4 using namespace Eigen;
H A DDenseBase_middleRows_int.cpp1 #include <Eigen/Core>
4 using namespace Eigen;
H A DDenseBase_template_int_middleCols.cpp1 #include <Eigen/Core>
4 using namespace Eigen;

Completed in 1304 milliseconds

1234567891011>>