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

  /external/eigen/doc/snippets/
MatrixBase_bottomRows_int.cpp 3 cout << "Here is a.bottomRows(2):" << endl;
4 cout << a.bottomRows(2) << endl;
5 a.bottomRows(2).setZero();
MatrixBase_template_int_bottomRows.cpp 3 cout << "Here is a.bottomRows<2>():" << endl;
4 cout << a.bottomRows<2>() << endl;
5 a.bottomRows<2>().setZero();
  /external/eigen/doc/examples/
Tutorial_BlockOperations_corner.cpp 14 cout << "m.bottomRows<2>() =" << endl << m.bottomRows<2>() << endl << endl;
  /external/eigen/test/
corners.cpp 40 COMPARE_CORNER(bottomRows(r), block(rows-r,0,r,cols));
77 VERIFY_IS_EQUAL((matrix.template bottomRows<r>()), (matrix.template block<r,cols>(rows-r,0)));
99 VERIFY_IS_EQUAL((const_matrix.template bottomRows<r>()), (const_matrix.template block<r,cols>(rows-r,0)));
sparse_basic.cpp 509 if (incRows > 0) refMat1.bottomRows(incRows).setZero();
  /external/eigen/Eigen/src/plugins/
BlockMethods.h 428 inline RowsBlockXpr bottomRows(Index n)
433 /** This is the const version of bottomRows(Index).*/
434 inline ConstRowsBlockXpr bottomRows(Index n) const
453 inline typename NRowsBlockXpr<N>::Type bottomRows(Index n = N)
458 /** This is the const version of bottomRows<int>().*/
460 inline typename ConstNRowsBlockXpr<N>::Type bottomRows(Index n = N) const
    [all...]
  /external/skia/src/utils/
SkTextureCompressor_R11EAC.cpp 354 static inline uint64_t interleave6(uint64_t topRows, uint64_t bottomRows) {
361 // This function expects topRows and bottomRows to contain the first two rows
364 // If the architecture is big endian, then topRows and bottomRows will contain the following:
369 // If the architecture is little endian, then topRows and bottomRows will contain
383 uint64_t x = (static_cast<uint64_t>(topRows) << 32) | static_cast<uint64_t>(bottomRows);
  /external/eigen/Eigen/src/LU/
FullPivLU.h 713 c.bottomRows(rows-cols)
714 -= dec().matrixLU().bottomRows(rows-cols)
  /external/eigen/Eigen/src/QR/
HouseholderQR.h 343 dst.bottomRows(cols-rank).setZero();
  /external/eigen/Eigen/src/Householder/
HouseholderSequence.h 314 dst.bottomRows(rows()-m_shift-actual_k)
  /external/eigen/Eigen/src/Eigenvalues/
RealQZ.h 484 essential2 = hr.template bottomRows<2>();
496 essential2 = hr.template bottomRows<2>();
  /external/eigen/Eigen/src/SparseQR/
SparseQR.h 180 y.bottomRows(y.rows()-rank).setZero();
  /external/eigen/Eigen/src/Core/
PlainObjectBase.h     [all...]

Completed in 961 milliseconds