OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:schur
(Results
1 - 2
of
2
) sorted by null
/external/eigen/test/
schur_complex.cpp
14
template<typename MatrixType> void
schur
(int size = MatrixType::ColsAtCompileTime)
function
67
CALL_SUBTEST_1((
schur
<Matrix4cd>() ));
68
CALL_SUBTEST_2((
schur
<MatrixXcf>(internal::random<int>(1,EIGEN_TEST_MAX_SIZE/4)) ));
69
CALL_SUBTEST_3((
schur
<Matrix<std::complex<float>, 1, 1> >() ));
70
CALL_SUBTEST_4((
schur
<Matrix<float, 3, 3, Eigen::RowMajor> >() ));
schur_real.cpp
40
template<typename MatrixType> void
schur
(int size = MatrixType::ColsAtCompileTime)
function
86
CALL_SUBTEST_1((
schur
<Matrix4f>() ));
87
CALL_SUBTEST_2((
schur
<MatrixXd>(internal::random<int>(1,EIGEN_TEST_MAX_SIZE/4)) ));
88
CALL_SUBTEST_3((
schur
<Matrix<float, 1, 1> >() ));
89
CALL_SUBTEST_4((
schur
<Matrix<double, 3, 3, Eigen::RowMajor> >() ));
Completed in 154 milliseconds