Searched refs:Eigen (Results 476 - 500 of 621) sorted by path

<<11121314151617181920>>

/external/eigen/test/
H A Dexceptions.cpp1 // This file is part of Eigen, a lightweight C++ template library
94 typedef Eigen::Matrix<ScalarWithExceptions,Dynamic,1> VectorType;
95 typedef Eigen::Matrix<ScalarWithExceptions,Dynamic,Dynamic> MatrixType;
H A Dgeo_alignedbox.cpp1 // This file is part of Eigen, a lightweight C++ template library
11 #include <Eigen/Geometry>
12 #include <Eigen/LU>
13 #include <Eigen/QR>
H A Dgeo_eulerangles.cpp1 // This file is part of Eigen, a lightweight C++ template library
11 #include <Eigen/Geometry>
12 #include <Eigen/LU>
13 #include <Eigen/SVD>
H A Dgeo_homogeneous.cpp1 // This file is part of Eigen, a lightweight C++ template library
11 #include <Eigen/Geometry>
H A Dgeo_hyperplane.cpp1 // This file is part of Eigen, a lightweight C++ template library
12 #include <Eigen/Geometry>
13 #include <Eigen/LU>
14 #include <Eigen/QR>
H A Dgeo_orthomethods.cpp1 // This file is part of Eigen, a lightweight C++ template library
11 #include <Eigen/Geometry>
12 #include <Eigen/LU>
13 #include <Eigen/SVD>
H A Dgeo_parametrizedline.cpp1 // This file is part of Eigen, a lightweight C++ template library
12 #include <Eigen/Geometry>
13 #include <Eigen/LU>
14 #include <Eigen/QR>
H A Dgeo_quaternion.cpp1 // This file is part of Eigen, a lightweight C++ template library
12 #include <Eigen/Geometry>
13 #include <Eigen/LU>
14 #include <Eigen/SVD>
H A Dgeo_transformations.cpp1 // This file is part of Eigen, a lightweight C++ template library
11 #include <Eigen/Geometry>
12 #include <Eigen/LU>
13 #include <Eigen/SVD>
257 t1 = (Matrix3(q1) * Eigen::Scaling(v0)) * Translation3(v0);
259 t1 = (q1 * Eigen::Scaling(v0)) * Translation3(v0);
268 t1 = Eigen::Scaling(s0) * Translation3(v0);
271 t1 = Eigen::Scaling(s0) * t1;
276 t1 = t3 * Eigen::Scaling(s0,s0,s0);
279 t1 = Eigen
[all...]
H A Dhessenberg.cpp1 // This file is part of Eigen, a lightweight C++ template library
12 #include <Eigen/Eigenvalues>
H A Dhouseholder.cpp1 // This file is part of Eigen, a lightweight C++ template library
11 #include <Eigen/QR>
H A Dinverse.cpp1 // This file is part of Eigen, a lightweight C++ template library
12 #include <Eigen/LU>
H A Djacobi.cpp1 // This file is part of Eigen, a lightweight C++ template library
12 #include <Eigen/SVD>
H A Djacobisvd.cpp1 // This file is part of Eigen, a lightweight C++ template library
15 #include <Eigen/SVD>
H A Dlu.cpp1 // This file is part of Eigen, a lightweight C++ template library
11 #include <Eigen/LU>
H A Dmain.h1 // This file is part of Eigen, a lightweight C++ template library
61 namespace Eigen namespace
76 namespace Eigen namespace
89 ~eigen_assert_exception() { Eigen::no_more_assert = false; }
101 namespace Eigen namespace
114 Eigen::no_more_assert = true; \
115 throw Eigen::eigen_assert_exception(); \
117 else if (Eigen::internal::push_assert) \
124 Eigen::no_more_assert = false; \
125 Eigen
211 namespace Eigen { namespace
[all...]
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>
H A Dnomalloc.cpp1 // This file is part of Eigen, a lightweight C++ template library
27 #include <Eigen/Cholesky>
28 #include <Eigen/Eigenvalues>
29 #include <Eigen/LU>
30 #include <Eigen/QR>
31 #include <Eigen/SVD>
107 typedef Eigen::Matrix<Scalar,
108 Eigen::Dynamic, Eigen::Dynamic,
112 typedef Eigen
[all...]
H A Dpacketmath.cpp1 // This file is part of Eigen, a lightweight C++ template library
13 // using namespace Eigen;
15 namespace Eigen { namespace
H A Dpardiso_support.cpp6 #include <Eigen/PardisoSupport>
H A Dpastix_support.cpp1 // This file is part of Eigen, a lightweight C++ template library
11 #include <Eigen/PaStiXSupport>
12 #include <unsupported/Eigen/SparseExtra>
17 PastixLLT< SparseMatrix<T, ColMajor>, Eigen::Lower > pastix_llt_lower;
18 PastixLDLT< SparseMatrix<T, ColMajor>, Eigen::Lower > pastix_ldlt_lower;
19 PastixLLT< SparseMatrix<T, ColMajor>, Eigen::Upper > pastix_llt_upper;
20 PastixLDLT< SparseMatrix<T, ColMajor>, Eigen::Upper > pastix_ldlt_upper;
H A Dprec_inverse_4x4.cpp1 // This file is part of Eigen, a lightweight C++ template library
11 #include <Eigen/LU>
H A Dproduct.h1 // This file is part of Eigen, a lightweight C++ template library
11 #include <Eigen/QR>
H A Dproduct_extra.cpp1 // This file is part of Eigen, a lightweight C++ template library
106 Eigen::Matrix2Xd dNdxy(2, 3);
H A Dproduct_trmv.cpp1 // This file is triangularView of Eigen, a lightweight C++ template library
33 m3 = m1.template triangularView<Eigen::Lower>();
34 VERIFY((m3 * v1).isApprox(m1.template triangularView<Eigen::Lower>() * v1, largerEps));
35 m3 = m1.template triangularView<Eigen::Upper>();
36 VERIFY((m3 * v1).isApprox(m1.template triangularView<Eigen::Upper>() * v1, largerEps));
37 m3 = m1.template triangularView<Eigen::UnitLower>();
38 VERIFY((m3 * v1).isApprox(m1.template triangularView<Eigen::UnitLower>() * v1, largerEps));
39 m3 = m1.template triangularView<Eigen::UnitUpper>();
40 VERIFY((m3 * v1).isApprox(m1.template triangularView<Eigen::UnitUpper>() * v1, largerEps));
43 m3 = m1.template triangularView<Eigen
[all...]

Completed in 261 milliseconds

<<11121314151617181920>>