Home
last modified time | relevance | path

Searched refs:matrixZ (Results 1 – 7 of 7) sorted by relevance

/external/eigen/doc/snippets/
DRealQZ_compute.cpp9 cout << "Q:\n" << qz.matrixQ() << "\n" << "Z:\n" << qz.matrixZ() << "\n";
13 << "\n|A-QSZ|: " << (A-qz.matrixQ()*qz.matrixS()*qz.matrixZ()).norm()
14 << ", |B-QTZ|: " << (B-qz.matrixQ()*qz.matrixT()*qz.matrixZ()).norm()
16 << ", |ZZ* - I|: " << (qz.matrixZ()*qz.matrixZ().adjoint() - MatrixXf::Identity(4,4)).norm()
/external/eigen/test/
Dreal_qz.cpp73 VERIFY_IS_APPROX(qz.matrixQ()*qz.matrixS()*qz.matrixZ(), A); in real_qz()
74 VERIFY_IS_APPROX(qz.matrixQ()*qz.matrixT()*qz.matrixZ(), B); in real_qz()
76 VERIFY_IS_APPROX(qz.matrixZ()*qz.matrixZ().adjoint(), MatrixType::Identity(dim,dim)); in real_qz()
Dqr_colpivoting.cpp40 MatrixType z = cod.matrixZ(); in cod()
/external/harfbuzz_ng/src/
Dhb-ot-layout-gpos-table.hh378 *found = !matrixZ[row * cols + col].is_null (); in get_anchor()
379 return this+matrixZ[row * cols + col]; in get_anchor()
388 if (!c->check_array (matrixZ.arrayZ, count)) return_trace (false); in sanitize()
390 if (!matrixZ[i].sanitize (c, this)) return_trace (false); in sanitize()
397 matrixZ; /* Matrix of offsets to Anchor tables-- member
400 DEFINE_SIZE_ARRAY (2, matrixZ);
/external/eigen/Eigen/src/QR/
DCompleteOrthogonalDecomposition.h159 MatrixType matrixZ() const {
/external/eigen/Eigen/src/Eigenvalues/
DGeneralizedEigenSolver.h314 const MatrixType &mZ = m_realQZ.matrixZ(); in compute()
DRealQZ.h129 const MatrixType& matrixZ() const { in matrixZ() function