/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 | cholesky.cpp | 189 A.bottomRightCorner(c,c).setZero(); in cholesky()
|
/external/eigen/doc/snippets/ |
D | MatrixBase_template_int_int_bottomRightCorner.cpp | 4 cout << m.bottomRightCorner<2,2>() << endl; 5 m.bottomRightCorner<2,2>().setZero();
|
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_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/plugins/ |
D | BlockMethods.h | 231 inline Block<Derived> bottomRightCorner(Index cRows, Index cCols) in bottomRightCorner() function 237 inline const Block<const Derived> bottomRightCorner(Index cRows, Index cCols) const in bottomRightCorner() function 252 inline Block<Derived, CRows, CCols> bottomRightCorner() in bottomRightCorner() function 259 inline const Block<const Derived, CRows, CCols> bottomRightCorner() const in bottomRightCorner() function 282 inline Block<Derived, CRows, CCols> bottomRightCorner(Index cRows, Index cCols) in bottomRightCorner() function 289 inline const Block<const Derived, CRows, CCols> bottomRightCorner(Index cRows, Index cCols) const in bottomRightCorner() function
|
/external/eigen/Eigen/src/Householder/ |
D | HouseholderSequence.h | 250 dst.bottomRightCorner(cornerSize, cornerSize) 253 dst.bottomRightCorner(cornerSize, cornerSize) 270 dst.bottomRightCorner(cornerSize, cornerSize) 273 dst.bottomRightCorner(cornerSize, cornerSize)
|
/external/eigen/Eigen/src/SVD/ |
D | UpperBidiagonalization.h | 110 m_householder.bottomRightCorner(remainingRows, remainingCols) in compute() 122 m_householder.bottomRightCorner(remainingRows-1, remainingCols) in compute()
|
/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/QR/ |
D | FullPivHouseholderQR.h | 436 biggest_in_corner = m_qr.bottomRightCorner(rows-k, cols-k) 474 m_qr.bottomRightCorner(rows-k, cols-k-1) 516 c.bottomRightCorner(remainingSize, rhs().cols())
|
D | ColPivHouseholderQR.h | 475 m_qr.bottomRightCorner(rows-k,cols-k) in compute() 500 m_qr.bottomRightCorner(rows-k, cols-k-1) in compute()
|
D | HouseholderQR.h | 248 mat.bottomRightCorner(remainingRows, remainingCols)
|
/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 | 77 P.bottomRightCorner(rows, cols) // P(end-rows+1:end, end-cols+1:end) 81 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 | 68 matrix.bottomRightCorner(r,c) 72 matrix.bottomRightCorner<r,c>()
|
D | SparseQuickReference.dox | 194 sm1.bottomRightCorner( rows, cols);
|
/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 | 311 matA.bottomRightCorner(remainingSize, remainingSize)
|
/external/eigen/Eigen/src/LU/ |
D | PartialPivLU.h | 278 … lu.bottomRightCorner(rrows,rcols).noalias() -= lu.col(k).tail(rrows) * lu.row(k).tail(rcols); in unblocked_lu()
|
D | FullPivLU.h | 447 biggest_in_corner = m_lu.bottomRightCorner(rows-k, cols-k) in compute()
|
/external/eigen/Eigen/src/Core/ |
D | PlainObjectBase.h | 721 _this.bottomRightCorner(new_rows, other.cols()) = other.bottomRows(new_rows); 723 _this.bottomRightCorner(other.rows(), new_cols) = other.rightCols(new_cols);
|