/external/eigen/doc/snippets/ |
TopicAliasing_block.cpp | 6 mat.bottomRightCorner(2,2) = mat.topLeftCorner(2,2);
|
TopicAliasing_block_correct.cpp | 6 mat.bottomRightCorner(2,2) = mat.topLeftCorner(2,2).eval();
|
MatrixBase_bottomRightCorner_int_int.cpp | 3 cout << "Here is m.bottomRightCorner(2, 2):" << endl; 4 cout << m.bottomRightCorner(2, 2) << endl; 5 m.bottomRightCorner(2, 2).setZero();
|
MatrixBase_template_int_int_bottomRightCorner.cpp | 3 cout << "Here is m.bottomRightCorner<2,2>():" << endl; 4 cout << m.bottomRightCorner<2,2>() << endl; 5 m.bottomRightCorner<2,2>().setZero();
|
MatrixBase_template_int_int_bottomRightCorner_int_int.cpp | 3 cout << "Here is m.bottomRightCorner<2,Dynamic>(2,2):" << endl; 4 cout << m.bottomRightCorner<2,Dynamic>(2,2) << endl; 5 m.bottomRightCorner<2,Dynamic>(2,2).setZero();
|
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();
|
/external/eigen/doc/examples/ |
Tutorial_BlockOperations_corner.cpp | 15 m.topLeftCorner(1,3) = m.bottomRightCorner(3,1).transpose();
|
/external/eigen/test/ |
corners.cpp | 31 COMPARE_CORNER(bottomRightCorner(r,c), block(rows-r,cols-c,r,c)); 63 VERIFY_IS_EQUAL((matrix.template bottomRightCorner<r,c>()), (matrix.template block<r,c>(rows-r,cols-c))); 68 VERIFY_IS_EQUAL((matrix.template bottomRightCorner<r,c>()), (matrix.template bottomRightCorner<r,Dynamic>(r,c))); 73 VERIFY_IS_EQUAL((matrix.template bottomRightCorner<r,c>()), (matrix.template bottomRightCorner<Dynamic,c>(r,c))); 85 VERIFY_IS_EQUAL((const_matrix.template bottomRightCorner<r,c>()), (const_matrix.template block<r,c>(rows-r,cols-c))); 90 VERIFY_IS_EQUAL((const_matrix.template bottomRightCorner<r,c>()), (const_matrix.template bottomRightCorner<r,Dynamic>(r,c))); 95 VERIFY_IS_EQUAL((const_matrix.template bottomRightCorner<r,c>()), (const_matrix.template bottomRightCorner<Dynamic,c>(r,c))) [all...] |
cholesky.cpp | 189 A.bottomRightCorner(c,c).setZero();
|
/external/eigen/Eigen/src/SVD/ |
UpperBidiagonalization.h | 110 m_householder.bottomRightCorner(remainingRows, remainingCols) 122 m_householder.bottomRightCorner(remainingRows-1, remainingCols)
|
/external/eigen/Eigen/src/plugins/ |
BlockMethods.h | 231 inline Block<Derived> bottomRightCorner(Index cRows, Index cCols) 236 /** This is the const version of bottomRightCorner(Index, Index).*/ 237 inline const Block<const Derived> bottomRightCorner(Index cRows, Index cCols) const 252 inline Block<Derived, CRows, CCols> bottomRightCorner() 257 /** This is the const version of bottomRightCorner<int, int>().*/ 259 inline const Block<const Derived, CRows, CCols> bottomRightCorner() const 282 inline Block<Derived, CRows, CCols> bottomRightCorner(Index cRows, Index cCols) 287 /** This is the const version of bottomRightCorner<int, int>(Index, Index).*/ 289 inline const Block<const Derived, CRows, CCols> bottomRightCorner(Index cRows, Index cCols) const [all...] |
/external/eigen/Eigen/src/Householder/ |
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/QR/ |
FullPivHouseholderQR.h | 444 biggest_in_corner = m_qr.bottomRightCorner(rows-k, cols-k) 482 m_qr.bottomRightCorner(rows-k, cols-k-1) 524 c.bottomRightCorner(remainingSize, rhs().cols())
|
HouseholderQR.h | 254 mat.bottomRightCorner(remainingRows, remainingCols)
|
ColPivHouseholderQR.h | 498 m_qr.bottomRightCorner(rows-k, cols-k-1)
|
/external/eigen/Eigen/src/Eigenvalues/ |
HessenbergDecomposition.h | 311 matA.bottomRightCorner(remainingSize, remainingSize)
|
Tridiagonalization.h | 367 hCoeffs.tail(n-i-1).noalias() = (matA.bottomRightCorner(remainingSize,remainingSize).template selfadjointView<Lower>() 372 matA.bottomRightCorner(remainingSize, remainingSize).template selfadjointView<Lower>()
|
/external/eigen/Eigen/src/LU/ |
PartialPivLU.h | 284 lu.bottomRightCorner(rrows,rcols).noalias() -= lu.col(k).tail(rrows) * lu.row(k).tail(rcols);
|
FullPivLU.h | 455 biggest_in_corner = m_lu.bottomRightCorner(rows-k, cols-k)
|
/external/eigen/Eigen/src/Core/ |
PlainObjectBase.h | [all...] |