Home
last modified time | relevance | path

Searched refs:bottomRightCorner (Results 1 – 25 of 26) sorted by relevance

12

/external/eigen/test/
Dcorners.cpp31 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()
Dcholesky.cpp189 A.bottomRightCorner(c,c).setZero(); in cholesky()
/external/eigen/doc/snippets/
DMatrixBase_template_int_int_bottomRightCorner.cpp4 cout << m.bottomRightCorner<2,2>() << endl;
5 m.bottomRightCorner<2,2>().setZero();
DMatrixBase_bottomRightCorner_int_int.cpp4 cout << m.bottomRightCorner(2, 2) << endl;
5 m.bottomRightCorner(2, 2).setZero();
DMatrixBase_template_int_int_bottomRightCorner_int_int.cpp4 cout << m.bottomRightCorner<2,Dynamic>(2,2) << endl;
5 m.bottomRightCorner<2,Dynamic>(2,2).setZero();
DTutorial_AdvancedInitialization_ThreeWays.cpp6 mat1.bottomRightCorner(size/2, size/2) = MatrixXd::Zero(size/2, size/2);
13 mat2.bottomRightCorner(size/2, size/2).setZero();
DTopicAliasing_block.cpp6 mat.bottomRightCorner(2,2) = mat.topLeftCorner(2,2);
DTopicAliasing_block_correct.cpp6 mat.bottomRightCorner(2,2) = mat.topLeftCorner(2,2).eval();
/external/eigen/Eigen/src/plugins/
DBlockMethods.h231 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/
DHouseholderSequence.h250 dst.bottomRightCorner(cornerSize, cornerSize)
253 dst.bottomRightCorner(cornerSize, cornerSize)
270 dst.bottomRightCorner(cornerSize, cornerSize)
273 dst.bottomRightCorner(cornerSize, cornerSize)
/external/eigen/Eigen/src/SVD/
DUpperBidiagonalization.h110 m_householder.bottomRightCorner(remainingRows, remainingCols) in compute()
122 m_householder.bottomRightCorner(remainingRows-1, remainingCols) in compute()
/external/eigen/doc/examples/
DTutorial_BlockOperations_corner.cpp15 m.topLeftCorner(1,3) = m.bottomRightCorner(3,1).transpose(); in main()
/external/eigen/Eigen/src/QR/
DFullPivHouseholderQR.h436 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())
DColPivHouseholderQR.h475 m_qr.bottomRightCorner(rows-k,cols-k) in compute()
500 m_qr.bottomRightCorner(rows-k, cols-k-1) in compute()
DHouseholderQR.h248 mat.bottomRightCorner(remainingRows, remainingCols)
/external/eigen/doc/
DTutorialBlockOperations.dox136 \link DenseBase::bottomRightCorner() * \endlink</td>
138 matrix.bottomRightCorner(p,q);\endcode </td>
140 matrix.bottomRightCorner<p,q>();\endcode </td>
DAsciiQuickReference.txt77 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)
DTopicAliasing.dox29 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
DA05_PortingFrom2To3.dox68 matrix.bottomRightCorner(r,c)
72 matrix.bottomRightCorner<r,c>()
DSparseQuickReference.dox194 sm1.bottomRightCorner( rows, cols);
/external/eigen/Eigen/src/Eigenvalues/
DTridiagonalization.h367 …hCoeffs.tail(n-i-1).noalias() = (matA.bottomRightCorner(remainingSize,remainingSize).template self…
372 matA.bottomRightCorner(remainingSize, remainingSize).template selfadjointView<Lower>()
DHessenbergDecomposition.h311 matA.bottomRightCorner(remainingSize, remainingSize)
/external/eigen/Eigen/src/LU/
DPartialPivLU.h278 … lu.bottomRightCorner(rrows,rcols).noalias() -= lu.col(k).tail(rrows) * lu.row(k).tail(rcols); in unblocked_lu()
DFullPivLU.h447 biggest_in_corner = m_lu.bottomRightCorner(rows-k, cols-k) in compute()
/external/eigen/Eigen/src/Core/
DPlainObjectBase.h721 _this.bottomRightCorner(new_rows, other.cols()) = other.bottomRows(new_rows);
723 _this.bottomRightCorner(other.rows(), new_cols) = other.rightCols(new_cols);

12