HomeSort by relevance Sort by last modified time
    Searched refs:bottomRows (Results 1 - 14 of 14) 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 468 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/eigen/Eigen/src/LU/
FullPivLU.h 705 c.bottomRows(rows-cols)
706 -= dec().matrixLU().bottomRows(rows-cols)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
RevisionHistoryView.js 253 var bottomRows = [];
  /external/eigen/Eigen/src/QR/
HouseholderQR.h 331 dst.bottomRows(cols-rank).setZero();
  /external/eigen/Eigen/src/SPQRSupport/
SuiteSparseQRSupport.h 155 y.bottomRows(cols()-rk).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 721 _this.bottomRightCorner(new_rows, other.cols()) = other.bottomRows(new_rows);
    [all...]

Completed in 2214 milliseconds