HomeSort by relevance Sort by last modified time
    Searched refs:bottomRightCorner (Results 1 - 18 of 18) sorted by null

  /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();
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/Eigen/src/SVD/
UpperBidiagonalization.h 110 m_householder.bottomRightCorner(remainingRows, remainingCols)
122 m_householder.bottomRightCorner(remainingRows-1, remainingCols)
  /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/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/Eigenvalues/
HessenbergDecomposition.h 311 matA.bottomRightCorner(remainingSize, remainingSize)
Tridiagonalization.h 366 hCoeffs.tail(n-i-1).noalias() = (matA.bottomRightCorner(remainingSize,remainingSize).template selfadjointView<Lower>()
371 matA.bottomRightCorner(remainingSize, remainingSize).template selfadjointView<Lower>()
  /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())
ColPivHouseholderQR.h 407 m_qr.bottomRightCorner(rows-k,cols-k)
432 m_qr.bottomRightCorner(rows-k, cols-k-1)
HouseholderQR.h 222 mat.bottomRightCorner(remainingRows, remainingCols)
  /external/eigen/Eigen/src/LU/
PartialPivLU.h 278 lu.bottomRightCorner(rrows,rcols).noalias() -= lu.col(k).tail(rrows) * lu.row(k).tail(rcols);
FullPivLU.h 442 biggest_in_corner = m_lu.bottomRightCorner(rows-k, cols-k)
  /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...]

Completed in 291 milliseconds