/external/eigen/test/ |
D | corners.cpp | 31 COMPARE_CORNER(bottomRightCorner(r,c), block(rows-r,cols-c,r,c)); in corners() 63 …VERIFY_IS_EQUAL((matrix.template bottomRightCorner<r,c>()), (matrix.template block<r,c>(rows-r,col… in corners_fixedsize() 68 …VERIFY_IS_EQUAL((matrix.template bottomRightCorner<r,c>()), (matrix.template bottomRightCorner<r,D… in corners_fixedsize() 73 …VERIFY_IS_EQUAL((matrix.template bottomRightCorner<r,c>()), (matrix.template bottomRightCorner<Dyn… in corners_fixedsize() 85 …VERIFY_IS_EQUAL((const_matrix.template bottomRightCorner<r,c>()), (const_matrix.template block<r,c… in corners_fixedsize() 90 …VERIFY_IS_EQUAL((const_matrix.template bottomRightCorner<r,c>()), (const_matrix.template bottomRig… in corners_fixedsize() 95 …VERIFY_IS_EQUAL((const_matrix.template bottomRightCorner<r,c>()), (const_matrix.template bottomRig… in corners_fixedsize()
|
D | commainitializer.cpp | 31 VERIFY_IS_EQUAL((m_fixed.template bottomRightCorner<M2,N2>()), mat22); in test_blocks()
|
/external/eigen/doc/snippets/ |
D | MatrixBase_bottomRightCorner_int_int.cpp | 4 cout << m.bottomRightCorner(2, 2) << endl; 5 m.bottomRightCorner(2, 2).setZero();
|
D | MatrixBase_template_int_int_bottomRightCorner.cpp | 4 cout << m.bottomRightCorner<2,2>() << endl; 5 m.bottomRightCorner<2,2>().setZero();
|
D | MatrixBase_template_int_int_bottomRightCorner_int_int.cpp | 4 cout << m.bottomRightCorner<2,Dynamic>(2,2) << endl; 5 m.bottomRightCorner<2,Dynamic>(2,2).setZero();
|
D | Tutorial_AdvancedInitialization_ThreeWays.cpp | 6 mat1.bottomRightCorner(size/2, size/2) = MatrixXd::Zero(size/2, size/2); 13 mat2.bottomRightCorner(size/2, size/2).setZero();
|
D | TopicAliasing_block.cpp | 6 mat.bottomRightCorner(2,2) = mat.topLeftCorner(2,2);
|
D | TopicAliasing_block_correct.cpp | 6 mat.bottomRightCorner(2,2) = mat.topLeftCorner(2,2).eval();
|
/external/eigen/Eigen/src/Householder/ |
D | BlockHouseholder.h | 64 … * vectors.bottomRightCorner(rs, rt).template triangularView<UnitLower>(); in make_block_householder_triangular_factor() 67 …triFactor.row(i).tail(rt) = triFactor.row(i).tail(rt) * triFactor.bottomRightCorner(rt,rt).templat… in make_block_householder_triangular_factor()
|
D | HouseholderSequence.h | 255 dst.bottomRightCorner(cornerSize, cornerSize) 258 dst.bottomRightCorner(cornerSize, cornerSize) 275 dst.bottomRightCorner(cornerSize, cornerSize) 278 dst.bottomRightCorner(cornerSize, cornerSize)
|
/external/eigen/Eigen/src/plugins/ |
D | BlockMethods.h | 263 inline BlockXpr bottomRightCorner(Index cRows, Index cCols) in bottomRightCorner() function 270 inline const ConstBlockXpr bottomRightCorner(Index cRows, Index cCols) const in bottomRightCorner() function 288 inline typename FixedBlockXpr<CRows,CCols>::Type bottomRightCorner() in bottomRightCorner() function 296 inline const typename ConstFixedBlockXpr<CRows,CCols>::Type bottomRightCorner() const in bottomRightCorner() function 321 inline typename FixedBlockXpr<CRows,CCols>::Type bottomRightCorner(Index cRows, Index cCols) in bottomRightCorner() function 328 inline const typename ConstFixedBlockXpr<CRows,CCols>::Type bottomRightCorner(Index cRows, Index cC… in bottomRightCorner() function
|
/external/eigen/doc/examples/ |
D | Tutorial_BlockOperations_corner.cpp | 15 m.topLeftCorner(1,3) = m.bottomRightCorner(3,1).transpose(); in main()
|
/external/eigen/Eigen/src/SVD/ |
D | UpperBidiagonalization.h | 120 mat.bottomRightCorner(remainingRows, remainingCols) 129 mat.bottomRightCorner(remainingRows-1, remainingCols) 264 SubMatType A11( A.bottomRightCorner(brows-bs,bcols-bs) ); in upperbidiagonalization_blocked_helper()
|
/external/eigen/Eigen/src/QR/ |
D | FullPivHouseholderQR.h | 488 Score score = m_qr.bottomRightCorner(rows-k, cols-k) 527 m_qr.bottomRightCorner(rows-k, cols-k-1) 562 c.bottomRightCorner(remainingSize, rhs.cols())
|
D | HouseholderQR.h | 284 mat.bottomRightCorner(remainingRows, remainingCols)
|
D | ColPivHouseholderQR.h | 547 m_qr.bottomRightCorner(rows-k, cols-k-1)
|
/external/eigen/doc/ |
D | TutorialBlockOperations.dox | 136 \link DenseBase::bottomRightCorner() * \endlink</td> 138 matrix.bottomRightCorner(p,q);\endcode </td> 140 matrix.bottomRightCorner<p,q>();\endcode </td>
|
D | AsciiQuickReference.txt | 79 P.bottomRightCorner(rows, cols) // P(end-rows+1:end, end-cols+1:end) 83 P.bottomRightCorner<rows,cols>() // P(end-rows+1:end, end-cols+1:end)
|
D | TopicAliasing.dox | 29 mat.bottomRightCorner(2,2) = mat.topLeftCorner(2,2); 32 <tt>mat.bottomRightCorner(2,2)</tt> on the left-hand side of the assignment and the block
|
D | A05_PortingFrom2To3.dox | 63 matrix.bottomRightCorner(r,c) 67 matrix.bottomRightCorner<r,c>()
|
/external/eigen/Eigen/src/Eigenvalues/ |
D | Tridiagonalization.h | 367 …hCoeffs.tail(n-i-1).noalias() = (matA.bottomRightCorner(remainingSize,remainingSize).template self… 372 matA.bottomRightCorner(remainingSize, remainingSize).template selfadjointView<Lower>()
|
D | HessenbergDecomposition.h | 313 matA.bottomRightCorner(remainingSize, remainingSize)
|
/external/eigen/Eigen/src/LU/ |
D | PartialPivLU.h | 406 … lu.bottomRightCorner(rrows,rcols).noalias() -= lu.col(k).tail(rrows) * lu.row(k).tail(rcols);
|
/external/eigen/Eigen/src/Core/ |
D | PlainObjectBase.h | 961 _this.bottomRightCorner(new_rows, other.cols()) = other.bottomRows(new_rows); 963 _this.bottomRightCorner(other.rows(), new_cols) = other.rightCols(new_cols);
|
/external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
D | MatrixPower.h | 522 eigen_assert(m_T.bottomRightCorner(m_nulls, m_nulls).isZero() in initialize()
|