HomeSort by relevance Sort by last modified time
    Searched refs:schur (Results 1 - 9 of 9) sorted by null

  /external/eigen/doc/snippets/
ComplexSchur_compute.cpp 2 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;
RealSchur_compute.cpp 2 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;
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/unsupported/test/
matrix_functions.h 48 RealSchur<MatrixType> schur(result);
49 MatrixType T = schur.matrixT();
50 processTriangularMatrix<MatrixType>::run(result, T, schur.matrixU());
matrix_power.cpp 108 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/
schur_complex.cpp 14 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> >() ));
schur_real.cpp 40 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/
vktShaderBuiltinPrecisionTests.cpp 3680 ExprP<float> schur = bindExpression("schur", ctx, local
3724 ExprP<Mat2> schur = bindExpression("schur", ctx, local
    [all...]
  /external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp 3709 ExprP<float> schur = bindExpression("schur", ctx, local
3753 ExprP<Mat2> schur = bindExpression("schur", ctx, local
    [all...]

Completed in 317 milliseconds