Searched refs:schur (Results 1 - 9 of 9) 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/unsupported/test/
H A Dmatrix_functions.h48 RealSchur<MatrixType> schur(result);
49 MatrixType T = schur.matrixT();
50 processTriangularMatrix<MatrixType>::run(result, T, schur.matrixU());
H A Dmatrix_power.cpp108 typename internal::conditional< IsComplex, ComplexSchur<MatrixType>, RealSchur<MatrixType> >::type schur; local
115 schur.compute(m);
116 T = schur.matrixT();
117 const MatrixType& U = schur.matrixU();
/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/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderBuiltinPrecisionTests.cpp3658 ExprP<float> schur = bindExpression("schur", ctx, local
3663 ExprP<Vec2> t2 = t1 * schur;
3669 (invA * matB) * -schur);
3671 (matC * invA) * -schur);
3675 vec3(blockB[0], blockB[1], schur));
3702 ExprP<Mat2> schur = bindExpression("schur", ctx, local
3705 invA + (invA * matB * schur * matC * invA));
3707 (-invA) * matB * schur);
[all...]
/external/deqp/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp3709 ExprP<float> schur = bindExpression("schur", ctx, local
3714 ExprP<Vec2> t2 = t1 * schur;
3720 (invA * matB) * -schur);
3722 (matC * invA) * -schur);
3726 vec3(blockB[0], blockB[1], schur));
3753 ExprP<Mat2> schur = bindExpression("schur", ctx, local
3756 invA + (invA * matB * schur * matC * invA));
3758 (-invA) * matB * schur);
[all...]

Completed in 275 milliseconds