Home
last modified time | relevance | path

Searched refs:schur (Results 1 – 11 of 11) sorted by relevance

/external/eigen/doc/snippets/
DComplexSchur_compute.cpp2 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;
DRealSchur_compute.cpp2 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;
DRealSchur_RealSchur_MatrixType.cpp4 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/
Dschur_complex.cpp14 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()
Dschur_real.cpp40 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/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderBuiltinPrecisionTests.cpp3658 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 …]
/external/deqp/modules/glshared/
DglsBuiltinPrecisionTests.cpp3709 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/ceres-solver/docs/source/
Dversion_history.rst263 #. Fix ``ITERATIVE_SCHUR`` solver to work correctly when the schur
283 #. Stablize the schur ordering algorithm.
335 e. When compiled without threads, the schur eliminator does not pay
798 #. Fixed a strict weak ordering bug in the schur ordering.
Dsolving.rst497 .. _section-schur:
547 :label: schur
555 participating in :eq:`schur` are the ones corresponding to the
569 :math:`pc\times pc` linear system :eq:`schur`. For almost all
571 points, :math:`p \ll q`, thus solving :eq:`schur` is
575 This still leaves open the question of solving :eq:`schur`. The
/external/ceres-solver/internal/ceres/
DCMakeLists.txt131 # Include the specialized schur solvers.
/external/ceres-solver/
DCMakeLists.txt104 OPTION(SCHUR_SPECIALIZATIONS "Enable fixed-size schur specializations." ON)