HomeSort by relevance Sort by last modified time
    Searched refs:bottomRows (Results 1 - 10 of 10) 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));
67 VERIFY_IS_EQUAL((matrix.template bottomRows<r>()), (matrix.template block<r,cols>(rows-r,0)));
79 VERIFY_IS_EQUAL((const_matrix.template bottomRows<r>()), (const_matrix.template block<r,cols>(rows-r,0)));
  /external/eigen/Eigen/src/plugins/
BlockMethods.h 302 inline RowsBlockXpr bottomRows(Index n)
307 /** This is the const version of bottomRows(Index).*/
308 inline ConstRowsBlockXpr bottomRows(Index n) const
323 inline typename NRowsBlockXpr<N>::Type bottomRows()
328 /** This is the const version of bottomRows<int>().*/
330 inline typename ConstNRowsBlockXpr<N>::Type bottomRows() const
  /external/eigen/Eigen/src/LU/
FullPivLU.h 698 c.bottomRows(rows-cols)
699 -= dec().matrixLU().bottomRows(rows-cols)
  /external/eigen/Eigen/src/QR/
HouseholderQR.h 306 dst.bottomRows(cols-rank).setZero();
FullPivHouseholderQR.h 495 RealScalar biggest_in_lower_part_of_c = c.bottomRows(rows-dec().rank()).cwiseAbs().maxCoeff();
  /external/eigen/Eigen/src/Householder/
HouseholderSequence.h 314 dst.bottomRows(rows()-m_shift-actual_k)
  /external/eigen/Eigen/src/Core/
PlainObjectBase.h 701 _this.bottomRightCorner(new_rows, other.cols()) = other.bottomRows(new_rows);
    [all...]

Completed in 236 milliseconds