OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:schur
(Results
1 - 7
of
7
) 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/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
3658
ExprP<float>
schur
= bindExpression("
schur
", ctx,
local
3702
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 183 milliseconds