Searched refs:bottomRows (Results 1 – 17 of 17) sorted by relevance
/external/eigen/doc/snippets/ |
D | MatrixBase_bottomRows_int.cpp | 4 cout << a.bottomRows(2) << endl; 5 a.bottomRows(2).setZero();
|
D | MatrixBase_template_int_bottomRows.cpp | 4 cout << a.bottomRows<2>() << endl; 5 a.bottomRows<2>().setZero();
|
/external/eigen/test/ |
D | corners.cpp | 40 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()
|
D | sparse_basic.cpp | 509 if (incRows > 0) refMat1.bottomRows(incRows).setZero(); in sparse_basic()
|
/external/eigen/doc/examples/ |
D | Tutorial_BlockOperations_corner.cpp | 14 cout << "m.bottomRows<2>() =" << endl << m.bottomRows<2>() << endl << endl; in main()
|
/external/eigen/Eigen/src/plugins/ |
D | BlockMethods.h | 428 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/ |
D | TutorialBlockOperations.dox | 150 \link DenseBase::bottomRows() * \endlink</td> 152 matrix.bottomRows(q);\endcode </td> 154 matrix.bottomRows<q>();\endcode </td>
|
D | AsciiQuickReference.txt | 72 P.bottomRows<rows>() // P(end-rows+1:end, :) 73 P.bottomRows(rows) // P(end-rows+1:end, :)
|
D | QuickReference.dox | 506 mat1.bottomRows(rows) 511 mat1.bottomRows<rows>()
|
D | A05_PortingFrom2To3.dox | 77 Notice that Eigen3 also provides these new convenience methods: topRows(), bottomRows(), leftCols()…
|
/external/skia/src/utils/ |
D | SkTextureCompressor_R11EAC.cpp | 354 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/ |
D | FullPivLU.h | 713 c.bottomRows(rows-cols) 714 -= dec().matrixLU().bottomRows(rows-cols)
|
/external/eigen/Eigen/src/Eigenvalues/ |
D | RealQZ.h | 484 essential2 = hr.template bottomRows<2>(); in step() 496 essential2 = hr.template bottomRows<2>(); in step()
|
/external/eigen/Eigen/src/QR/ |
D | HouseholderQR.h | 343 dst.bottomRows(cols-rank).setZero();
|
/external/eigen/Eigen/src/Householder/ |
D | HouseholderSequence.h | 314 dst.bottomRows(rows()-m_shift-actual_k)
|
/external/eigen/Eigen/src/SparseQR/ |
D | SparseQR.h | 180 y.bottomRows(y.rows()-rank).setZero();
|
/external/eigen/Eigen/src/Core/ |
D | PlainObjectBase.h | 723 _this.bottomRightCorner(new_rows, other.cols()) = other.bottomRows(new_rows);
|