/external/eigen/doc/snippets/ |
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();
|
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();
|
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/chromium_org/third_party/WebKit/Source/platform/geometry/ |
FloatRoundedRectTest.cpp | 100 EXPECT_EQ(FloatRect(4, 6, 0, 0), r.bottomRightCorner()); 137 EXPECT_EQ(FloatRect(50, 50, 50, 50), r.bottomRightCorner()); 182 EXPECT_EQ(FloatRect(80, 70, 20, 30), r.bottomRightCorner());
|
FloatRoundedRect.cpp | 128 const FloatRect& bottomRightRect = bottomRightCorner();
|
FloatRoundedRect.h | 104 FloatRect bottomRightCorner() const
|
/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))); 75 VERIFY_IS_EQUAL((const_matrix.template bottomRightCorner<r,c>()), (const_matrix.template block<r,c>(rows-r,cols-c)));
|
/external/eigen/doc/ |
C04_TutorialBlockOperations.dox | 145 \link DenseBase::bottomRightCorner() * \endlink</td> 147 matrix.bottomRightCorner(p,q);\endcode </td> 149 matrix.bottomRightCorner<p,q>();\endcode </td>
|
AsciiQuickReference.txt | 53 P.bottomRightCorner(rows, cols) // [m n]=size(P); P(m-rows+1:m, n-cols+1:n) 57 P.bottomRightCorner<rows,cols>() // [m n]=size(P); P(m-rows+1:m, n-cols+1:n)
|
I11_Aliasing.dox | 34 mat.bottomRightCorner(2,2) = mat.topLeftCorner(2,2); 37 <tt>mat.bottomRightCorner(2,2)</tt> on the left-hand side of the assignment and the block
|
A05_PortingFrom2To3.dox | 83 matrix.bottomRightCorner(r,c) 87 matrix.bottomRightCorner<r,c>()
|
QuickReference.dox | 507 mat1.bottomRightCorner(rows,cols)\endcode 512 mat1.bottomRightCorner<rows,cols>()\endcode
|
/external/eigen/Eigen/src/SVD/ |
UpperBidiagonalization.h | 110 m_householder.bottomRightCorner(remainingRows, remainingCols) 122 m_householder.bottomRightCorner(remainingRows-1, remainingCols)
|
/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/plugins/ |
BlockMethods.h | 169 inline Block<Derived> bottomRightCorner(Index cRows, Index cCols) 174 /** This is the const version of bottomRightCorner(Index, Index).*/ 175 inline const Block<const Derived> bottomRightCorner(Index cRows, Index cCols) const 190 inline Block<Derived, CRows, CCols> bottomRightCorner() 195 /** This is the const version of bottomRightCorner<int, int>().*/ 197 inline const Block<const Derived, CRows, CCols> bottomRightCorner() const
|
/external/eigen/Eigen/src/QR/ |
FullPivHouseholderQR.h | 406 biggest_in_corner = m_qr.bottomRightCorner(rows-k, cols-k) 444 m_qr.bottomRightCorner(rows-k, cols-k-1) 486 c.bottomRightCorner(remainingSize, rhs().cols())
|
HouseholderQR.h | 222 mat.bottomRightCorner(remainingRows, remainingCols)
|
ColPivHouseholderQR.h | 407 m_qr.bottomRightCorner(rows-k,cols-k) 432 m_qr.bottomRightCorner(rows-k, cols-k-1)
|
/external/eigen/Eigen/src/Eigenvalues/ |
Tridiagonalization.h | 366 hCoeffs.tail(n-i-1).noalias() = (matA.bottomRightCorner(remainingSize,remainingSize).template selfadjointView<Lower>() 371 matA.bottomRightCorner(remainingSize, remainingSize).template selfadjointView<Lower>()
|
HessenbergDecomposition.h | 311 matA.bottomRightCorner(remainingSize, remainingSize)
|
/external/eigen/Eigen/src/LU/ |
PartialPivLU.h | 278 lu.bottomRightCorner(rrows,rcols).noalias() -= lu.col(k).tail(rrows) * lu.row(k).tail(rcols);
|
/external/eigen/Eigen/src/Core/ |
PlainObjectBase.h | 701 _this.bottomRightCorner(new_rows, other.cols()) = other.bottomRows(new_rows); 703 _this.bottomRightCorner(other.rows(), new_cols) = other.rightCols(new_cols); [all...] |