Home
last modified time | relevance | path

Searched refs:bottomRows (Results 1 – 17 of 17) sorted by relevance

/external/eigen/doc/snippets/
DMatrixBase_bottomRows_int.cpp4 cout << a.bottomRows(2) << endl;
5 a.bottomRows(2).setZero();
DMatrixBase_template_int_bottomRows.cpp4 cout << a.bottomRows<2>() << endl;
5 a.bottomRows<2>().setZero();
/external/eigen/test/
Dcorners.cpp40 COMPARE_CORNER(bottomRows(r), block(rows-r,0,r,cols)); in corners()
77 VERIFY_IS_EQUAL((matrix.template bottomRows<r>()), (matrix.template block<r,cols>(rows-r,0))); in corners_fixedsize()
99 …VERIFY_IS_EQUAL((const_matrix.template bottomRows<r>()), (const_matrix.template block<r,cols>(rows… in corners_fixedsize()
Dsparse_basic.cpp509 if (incRows > 0) refMat1.bottomRows(incRows).setZero(); in sparse_basic()
/external/eigen/doc/examples/
DTutorial_BlockOperations_corner.cpp14 cout << "m.bottomRows<2>() =" << endl << m.bottomRows<2>() << endl << endl; in main()
/external/eigen/Eigen/src/plugins/
DBlockMethods.h428 inline RowsBlockXpr bottomRows(Index n) in bottomRows() function
434 inline ConstRowsBlockXpr bottomRows(Index n) const in bottomRows() function
453 inline typename NRowsBlockXpr<N>::Type bottomRows(Index n = N)
460 inline typename ConstNRowsBlockXpr<N>::Type bottomRows(Index n = N) const
/external/eigen/doc/
DTutorialBlockOperations.dox150 \link DenseBase::bottomRows() * \endlink</td>
152 matrix.bottomRows(q);\endcode </td>
154 matrix.bottomRows<q>();\endcode </td>
DAsciiQuickReference.txt72 P.bottomRows<rows>() // P(end-rows+1:end, :)
73 P.bottomRows(rows) // P(end-rows+1:end, :)
DQuickReference.dox506 mat1.bottomRows(rows)
511 mat1.bottomRows<rows>()
DA05_PortingFrom2To3.dox77 Notice that Eigen3 also provides these new convenience methods: topRows(), bottomRows(), leftCols()…
/external/skia/src/utils/
DSkTextureCompressor_R11EAC.cpp354 static inline uint64_t interleave6(uint64_t topRows, uint64_t bottomRows) { in interleave6() argument
383 uint64_t x = (static_cast<uint64_t>(topRows) << 32) | static_cast<uint64_t>(bottomRows); in interleave6()
/external/eigen/Eigen/src/LU/
DFullPivLU.h713 c.bottomRows(rows-cols)
714 -= dec().matrixLU().bottomRows(rows-cols)
/external/eigen/Eigen/src/Eigenvalues/
DRealQZ.h484 essential2 = hr.template bottomRows<2>(); in step()
496 essential2 = hr.template bottomRows<2>(); in step()
/external/eigen/Eigen/src/QR/
DHouseholderQR.h343 dst.bottomRows(cols-rank).setZero();
/external/eigen/Eigen/src/Householder/
DHouseholderSequence.h314 dst.bottomRows(rows()-m_shift-actual_k)
/external/eigen/Eigen/src/SparseQR/
DSparseQR.h180 y.bottomRows(y.rows()-rank).setZero();
/external/eigen/Eigen/src/Core/
DPlainObjectBase.h723 _this.bottomRightCorner(new_rows, other.cols()) = other.bottomRows(new_rows);