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

  /external/eigen/doc/snippets/
MatrixBase_template_int_topRows.cpp 3 cout << "Here is a.topRows<2>():" << endl;
4 cout << a.topRows<2>() << endl;
5 a.topRows<2>().setZero();
MatrixBase_topRows_int.cpp 3 cout << "Here is a.topRows(2):" << endl;
4 cout << a.topRows(2) << endl;
5 a.topRows(2).setZero();
  /external/eigen/test/
corners.cpp 38 COMPARE_CORNER(topRows(r), block(0,0,r,cols));
65 VERIFY_IS_EQUAL((matrix.template topRows<r>()), (matrix.template block<r,cols>(0,0)));
77 VERIFY_IS_EQUAL((const_matrix.template topRows<r>()), (const_matrix.template block<r,cols>(0,0)));
  /external/eigen/Eigen/src/QR/
HouseholderQR.h 303 .solveInPlace(c.topRows(rank));
305 dst.topRows(rank) = c.topRows(rank);
ColPivHouseholderQR.h 481 .solveInPlace(c.topRows(nonzero_pivots));
485 d.topRows(nonzero_pivots)
489 * c.topRows(nonzero_pivots);
FullPivHouseholderQR.h 494 RealScalar biggest_in_upper_part_of_c = c.topRows( dec().rank() ).cwiseAbs().maxCoeff();
505 .solveInPlace(c.topRows(dec().rank()));
  /external/eigen/Eigen/src/plugins/
BlockMethods.h 258 inline RowsBlockXpr topRows(Index n)
263 /** This is the const version of topRows(Index).*/
264 inline ConstRowsBlockXpr topRows(Index n) const
279 inline typename NRowsBlockXpr<N>::Type topRows()
284 /** This is the const version of topRows<int>().*/
286 inline typename ConstNRowsBlockXpr<N>::Type topRows() const
  /external/eigen/Eigen/src/LU/
FullPivLU.h 522 * m_lu.topRows(smalldim)
695 .solveInPlace(c.topRows(smalldim));
700 * c.topRows(cols);
707 .solveInPlace(c.topRows(nonzero_pivots));
  /external/eigen/Eigen/src/Eigenvalues/
ComplexSchur.h 372 m_matT.topRows((std::min)(il+2,iu)+1).applyOnTheRight(il, il+1, rot);
380 m_matT.topRows((std::min)(i+2,iu)+1).applyOnTheRight(i, i+1, rot);
RealSchur.h 325 m_matT.topRows(iu+1).applyOnTheRight(iu-1, iu, rot);
  /external/eigen/Eigen/src/Geometry/
Transform.h     [all...]

Completed in 555 milliseconds