Searched refs:topRows (Results 1 - 12 of 12) sorted by relevance

/external/eigen/doc/snippets/
H A DMatrixBase_template_int_topRows.cpp3 cout << "Here is a.topRows<2>():" << endl;
4 cout << a.topRows<2>() << endl;
5 a.topRows<2>().setZero();
H A DMatrixBase_topRows_int.cpp3 cout << "Here is a.topRows(2):" << endl;
4 cout << a.topRows(2) << endl;
5 a.topRows(2).setZero();
/external/eigen/test/
H A Dcorners.cpp38 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/
H A DHouseholderQR.h303 .solveInPlace(c.topRows(rank));
305 dst.topRows(rank) = c.topRows(rank);
H A DColPivHouseholderQR.h481 .solveInPlace(c.topRows(nonzero_pivots));
485 d.topRows(nonzero_pivots)
489 * c.topRows(nonzero_pivots);
H A DFullPivHouseholderQR.h494 RealScalar biggest_in_upper_part_of_c = c.topRows( dec().rank() ).cwiseAbs().maxCoeff();
505 .solveInPlace(c.topRows(dec().rank()));
/external/eigen/Eigen/src/plugins/
H A DBlockMethods.h258 inline RowsBlockXpr topRows(Index n) function
263 /** This is the const version of topRows(Index).*/
264 inline ConstRowsBlockXpr topRows(Index n) const function
279 inline typename NRowsBlockXpr<N>::Type topRows() function
284 /** This is the const version of topRows<int>().*/
286 inline typename ConstNRowsBlockXpr<N>::Type topRows() const function
/external/eigen/Eigen/src/LU/
H A DFullPivLU.h522 * m_lu.topRows(smalldim)
695 .solveInPlace(c.topRows(smalldim));
700 * c.topRows(cols);
707 .solveInPlace(c.topRows(nonzero_pivots));
/external/eigen/Eigen/src/Eigenvalues/
H A DComplexSchur.h372 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);
H A DRealSchur.h325 m_matT.topRows(iu+1).applyOnTheRight(iu-1, iu, rot);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DRevisionHistoryView.js253 var topRows = [];
/external/eigen/Eigen/src/Geometry/
H A DTransform.h827 m_matrix.template topRows<Dim>() *= s;
1368 res.matrix().template topRows<Dim>().noalias()
1369 = other * tr.matrix().template topRows<Dim>();
1416 res.matrix().template topRows<Dim>() = lhs.matrix() * rhs.matrix();

Completed in 390 milliseconds