Searched refs:schur (Results 1 - 6 of 6) sorted by relevance

/external/eigen/doc/snippets/
H A DComplexSchur_compute.cpp2 ComplexSchur<MatrixXcf> schur(4);
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;
H A DRealSchur_compute.cpp2 RealSchur<MatrixXf> schur(4);
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;
H A 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/
H A Dschur_complex.cpp14 template<typename MatrixType> void schur(int size = MatrixType::ColsAtCompileTime) function
84 CALL_SUBTEST_1(( schur<Matrix4cd>() ));
85 CALL_SUBTEST_2(( schur<MatrixXcf>(internal::random<int>(1,EIGEN_TEST_MAX_SIZE/4)) ));
86 CALL_SUBTEST_3(( schur<Matrix<std::complex<float>, 1, 1> >() ));
87 CALL_SUBTEST_4(( schur<Matrix<float, 3, 3, Eigen::RowMajor> >() ));
H A Dschur_real.cpp40 template<typename MatrixType> void schur(int size = MatrixType::ColsAtCompileTime) function
105 CALL_SUBTEST_1(( schur<Matrix4f>() ));
106 CALL_SUBTEST_2(( schur<MatrixXd>(internal::random<int>(1,EIGEN_TEST_MAX_SIZE/4)) ));
107 CALL_SUBTEST_3(( schur<Matrix<float, 1, 1> >() ));
108 CALL_SUBTEST_4(( schur<Matrix<double, 3, 3, Eigen::RowMajor> >() ));
/external/deqp/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp3575 ExprP<float> schur = bindExpression("schur", ctx, local
3580 ExprP<Vec2> t2 = t1 * schur;
3586 (invA * matB) * -schur);
3588 (matC * invA) * -schur);
3592 vec3(blockB[0], blockB[1], schur));
3619 ExprP<Mat2> schur = bindExpression("schur", ctx, local
3622 invA + (invA * matB * schur * matC * invA));
3624 (-invA) * matB * schur);
[all...]

Completed in 77 milliseconds