/external/eigen/doc/snippets/ |
D | SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp | 1 SelfAdjointEigenSolver<Matrix4f> es; 2 Matrix4f X = Matrix4f::Random(4,4); 3 Matrix4f A = X + X.transpose(); 6 es.compute(A + Matrix4f::Identity(4,4)); // re-use es to compute eigenvalues of A+I
|
D | HessenbergDecomposition_matrixH.cpp | 1 Matrix4f A = MatrixXf::Random(4,4);
|
/external/eigen/doc/examples/ |
D | function_taking_ref.cpp | 14 Matrix4f m = Matrix4f::Random(); in main() 18 cout << "inv_cond(m+I): " << inv_cond(m+Matrix4f::Identity()) << endl; in main()
|
D | Tutorial_simple_example_fixed_size.cpp | 10 Matrix4f m4 = Matrix4f::Identity(); in main()
|
D | Tutorial_BlockOperations_corner.cpp | 8 Eigen::Matrix4f m; in main()
|
/external/eigen/doc/ |
D | tutorial.cpp | 9 Eigen::Matrix4f m4 = Eigen::Matrix4f::Identity(); in main() 50 Eigen::Matrix4f other = (m4 * m4).lazy(); // forces lazy evaluation in main()
|
D | FixedSizeVectorizable.dox | 18 \li Eigen::Matrix4f 28 …array", it is not dynamically allocated. For example, the data behind a Matrix4f is just a "float …
|
/external/eigen/demos/opengl/ |
D | camera.h | 79 const Eigen::Matrix4f& projectionMatrix(void) const; 90 …Eigen::Vector3f unProject(const Eigen::Vector2f& uv, float depth, const Eigen::Matrix4f& invModelv… 105 mutable Eigen::Matrix4f mProjectionMatrix;
|
D | camera.cpp | 147 Matrix4f mrot, mt, mtm; in rotateAroundTarget() 232 const Matrix4f& Camera::projectionMatrix(void) const in projectionMatrix() 248 Matrix4f inv = mViewMatrix.inverse().matrix(); in unProject() 252 Vector3f Camera::unProject(const Vector2f& uv, float depth, const Matrix4f& invModelview) const in unProject()
|
D | gpuhelper.cpp | 34 pushMatrix(Matrix4f::Identity(),GL_PROJECTION); in pushProjectionMode2D() 47 pushMatrix(Matrix4f::Identity(),GL_MODELVIEW); in pushProjectionMode2D()
|
/external/eigen/bench/ |
D | sparse_trisolver.cpp | 190 Matrix4f m = Matrix4f::Random(); in main() 205 Matrix4f m = Matrix4f::Random(); in main()
|
/external/eigen/test/ |
D | unalignedassert.cpp | 66 Matrix4f m; 117 construct_at_boundary<Matrix4f>(EIGEN_MAX_ALIGN_BYTES); in unalignedassert() 168 if(b<64) VERIFY_RAISES_ASSERT(construct_at_boundary<Matrix4f>(b)); in unalignedassert()
|
D | prec_inverse_4x4.cpp | 73 CALL_SUBTEST_1((inverse_permutation_4x4<Matrix4f>())); in test_prec_inverse_4x4() 74 CALL_SUBTEST_1(( inverse_general_4x4<Matrix4f>(200000 * g_repeat) )); in test_prec_inverse_4x4()
|
D | dynalloc.cpp | 134 CALL_SUBTEST( check_custom_new_delete<Matrix4f>() ); in test_dynalloc() 144 CALL_SUBTEST(check_dynaligned<Matrix4f>() ); in test_dynalloc()
|
D | nesting_ops.cpp | 98 CALL_SUBTEST_3(run_nesting_ops_1(Matrix4f::Random())); in test_nesting_ops() 104 CALL_SUBTEST_3( run_nesting_ops_2(Matrix4f()) ); in test_nesting_ops()
|
D | stddeque_overload.cpp | 19 EIGEN_DEFINE_STL_DEQUE_SPECIALIZATION(Matrix4f) in EIGEN_DEFINE_STL_DEQUE_SPECIALIZATION() 141 CALL_SUBTEST_1(check_stddeque_matrix(Matrix4f())); in test_stddeque_overload()
|
D | stdvector_overload.cpp | 19 EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(Matrix4f) in EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION() 144 CALL_SUBTEST_1(check_stdvector_matrix(Matrix4f())); in test_stdvector_overload()
|
D | cuda_basic.cu | 165 CALL_SUBTEST( run_and_compare_to_cuda(prod_test<Matrix4f,Vector4f>(), nthreads, in, out) ); in test_cuda_basic() 168 CALL_SUBTEST( run_and_compare_to_cuda(diagonal<Matrix4f,Vector4f>(), nthreads, in, out) ); in test_cuda_basic()
|
D | eigensolver_generic.cpp | 108 CALL_SUBTEST_1( eigensolver(Matrix4f()) ); in test_eigensolver_generic() 120 CALL_SUBTEST_1( eigensolver_verify_assert(Matrix4f()) ); in test_eigensolver_generic()
|
D | stdlist_overload.cpp | 19 EIGEN_DEFINE_STL_LIST_SPECIALIZATION(Matrix4f) in EIGEN_DEFINE_STL_LIST_SPECIALIZATION() 175 CALL_SUBTEST_1(check_stdlist_matrix(Matrix4f())); in test_stdlist_overload()
|
D | dontalign.cpp | 52 dontalign(Matrix4f()); in test_dontalign()
|
D | evaluators.cpp | 278 Matrix4f m4, m4src = Matrix4f::Random(); in test_evaluators() 279 Array44f a4, a4src = Matrix4f::Random(); in test_evaluators() 301 Matrix4f m4ref = m4; in test_evaluators()
|
D | real_qz.cpp | 83 CALL_SUBTEST_1( real_qz(Matrix4f()) ); in test_real_qz()
|
/external/eigen/unsupported/test/ |
D | matrix_power.cpp | 172 CALL_SUBTEST_8(testGeneral(Matrix4f(), 1e-4)); in test_matrix_power() 185 CALL_SUBTEST_8(testSingular(Matrix4f(), 1e-4)); in test_matrix_power() 198 CALL_SUBTEST_8(testLogThenExp(Matrix4f(), 1e-4)); in test_matrix_power()
|
D | matrix_square_root.cpp | 26 CALL_SUBTEST_3(testMatrixSqrt(Matrix4f())); in test_matrix_square_root()
|