HomeSort by relevance Sort by last modified time
    Searched full:matrixz (Results 1 - 5 of 5) sorted by null

  /external/eigen/doc/snippets/
RealQZ_compute.cpp 9 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/
real_qz.cpp 43 VERIFY_IS_APPROX(qz.matrixQ()*qz.matrixS()*qz.matrixZ(), A);
44 VERIFY_IS_APPROX(qz.matrixQ()*qz.matrixT()*qz.matrixZ(), B);
46 VERIFY_IS_APPROX(qz.matrixZ()*qz.matrixZ().adjoint(), MatrixType::Identity(dim,dim));
  /external/harfbuzz_ng/src/
hb-ot-layout-gpos-table.hh 348 *found = !matrixZ[row * cols + col].is_null ();
349 return this+matrixZ[row * cols + col];
357 if (!c->check_array (matrixZ, matrixZ[0].static_size, count)) return TRACE_RETURN (false);
359 if (!matrixZ[i].sanitize (c, this)) return TRACE_RETURN (false);
366 matrixZ[VAR]; /* Matrix of offsets to Anchor tables--
369 DEFINE_SIZE_ARRAY (2, matrixZ);
    [all...]
  /external/eigen/Eigen/src/Eigenvalues/
RealQZ.h 43 * matrixT(), matrixQ() and matrixZ() functions to retrieve the matrices
129 const MatrixType& matrixZ() const {
GeneralizedEigenSolver.h 305 m_eivec = m_realQZ.matrixZ().transpose();

Completed in 428 milliseconds