/external/eigen/doc/snippets/ |
D | ComplexSchur_compute.cpp | 2 ComplexSchur<MatrixXcf> schur(4); variable 3 schur.compute(A); 4 cout << "The matrix T in the decomposition of A is:" << endl << schur.matrixT() << endl; 5 schur.compute(A.inverse()); 6 cout << "The matrix T in the decomposition of A^(-1) is:" << endl << schur.matrixT() << endl;
|
D | RealSchur_compute.cpp | 2 RealSchur<MatrixXf> schur(4); variable 3 schur.compute(A, /* computeU = */ false); 4 cout << "The matrix T in the decomposition of A is:" << endl << schur.matrixT() << endl; 5 schur.compute(A.inverse(), /* computeU = */ false); 6 cout << "The matrix T in the decomposition of A^(-1) is:" << endl << schur.matrixT() << endl;
|
D | RealSchur_RealSchur_MatrixType.cpp | 4 RealSchur<MatrixXd> schur(A); 5 cout << "The orthogonal matrix U is:" << endl << schur.matrixU() << endl; 6 cout << "The quasi-triangular matrix T is:" << endl << schur.matrixT() << endl << endl; 8 MatrixXd U = schur.matrixU(); 9 MatrixXd T = schur.matrixT();
|
/external/eigen/test/ |
D | schur_complex.cpp | 14 template<typename MatrixType> void schur(int size = MatrixType::ColsAtCompileTime) in schur() function 84 CALL_SUBTEST_1(( schur<Matrix4cd>() )); in test_schur_complex() 85 CALL_SUBTEST_2(( schur<MatrixXcf>(internal::random<int>(1,EIGEN_TEST_MAX_SIZE/4)) )); in test_schur_complex() 86 CALL_SUBTEST_3(( schur<Matrix<std::complex<float>, 1, 1> >() )); in test_schur_complex() 87 CALL_SUBTEST_4(( schur<Matrix<float, 3, 3, Eigen::RowMajor> >() )); in test_schur_complex()
|
D | schur_real.cpp | 40 template<typename MatrixType> void schur(int size = MatrixType::ColsAtCompileTime) in schur() function 105 CALL_SUBTEST_1(( schur<Matrix4f>() )); in test_schur_real() 106 CALL_SUBTEST_2(( schur<MatrixXd>(internal::random<int>(1,EIGEN_TEST_MAX_SIZE/4)) )); in test_schur_real() 107 CALL_SUBTEST_3(( schur<Matrix<float, 1, 1> >() )); in test_schur_real() 108 CALL_SUBTEST_4(( schur<Matrix<double, 3, 3, Eigen::RowMajor> >() )); in test_schur_real()
|
/external/eigen/unsupported/test/ |
D | matrix_functions.h | 48 RealSchur<MatrixType> schur(result); 49 MatrixType T = schur.matrixT(); 50 processTriangularMatrix<MatrixType>::run(result, T, schur.matrixU());
|
D | matrix_power.cpp | 108 …me internal::conditional< IsComplex, ComplexSchur<MatrixType>, RealSchur<MatrixType> >::type schur; in testSingular() local 115 schur.compute(m); in testSingular() 116 T = schur.matrixT(); in testSingular() 117 const MatrixType& U = schur.matrixU(); in testSingular()
|
/external/deqp/modules/glshared/ |
D | glsBuiltinPrecisionTests.cpp | 3709 ExprP<float> schur = bindExpression("schur", ctx, in doExpand() local 3714 ExprP<Vec2> t2 = t1 * schur; in doExpand() 3720 (invA * matB) * -schur); in doExpand() 3722 (matC * invA) * -schur); in doExpand() 3726 vec3(blockB[0], blockB[1], schur)); in doExpand() 3753 ExprP<Mat2> schur = bindExpression("schur", ctx, in doExpand() local 3756 invA + (invA * matB * schur * matC * invA)); in doExpand() 3758 (-invA) * matB * schur); in doExpand() 3760 (-schur) * matC * invA); in doExpand() 3764 vec4(blockB[0][0], blockB[0][1], schur[0][0], schur[0][1]), in doExpand() [all …]
|
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/ |
D | vktShaderBuiltinPrecisionTests.cpp | 3658 ExprP<float> schur = bindExpression("schur", ctx, in doExpand() local 3663 ExprP<Vec2> t2 = t1 * schur; in doExpand() 3669 (invA * matB) * -schur); in doExpand() 3671 (matC * invA) * -schur); in doExpand() 3675 vec3(blockB[0], blockB[1], schur)); in doExpand() 3702 ExprP<Mat2> schur = bindExpression("schur", ctx, in doExpand() local 3705 invA + (invA * matB * schur * matC * invA)); in doExpand() 3707 (-invA) * matB * schur); in doExpand() 3709 (-schur) * matC * invA); in doExpand() 3713 vec4(blockB[0][0], blockB[0][1], schur[0][0], schur[0][1]), in doExpand() [all …]
|