Home
last modified time | relevance | path

Searched refs:rightCols (Results 1 – 20 of 20) sorted by relevance

/external/eigen/doc/snippets/
DMatrixBase_rightCols_int.cpp4 cout << a.rightCols(2) << endl;
5 a.rightCols(2).setZero();
DMatrixBase_template_int_rightCols.cpp4 cout << a.rightCols<2>() << endl;
5 a.rightCols<2>().setZero();
/external/eigen/Eigen/src/Eigenvalues/
DRealQZ.h241 m_S.rightCols(dim-j-1).applyOnTheLeft(i-1,i,G.adjoint()); in hessenbergTriangular()
242 m_T.rightCols(dim-i+1).applyOnTheLeft(i-1,i,G.adjoint()); in hessenbergTriangular()
336 m_S.rightCols(dim-i).applyOnTheLeft(i,i+1,G.adjoint()); in splitOffTwoRows()
337 m_T.rightCols(dim-i).applyOnTheLeft(i,i+1,G.adjoint()); in splitOffTwoRows()
370 m_S.rightCols(dim-firstColS).applyOnTheLeft(zz,zz+1,G.adjoint()); in pushDownZero()
371 m_T.rightCols(dim-zz).applyOnTheLeft(zz,zz+1,G.adjoint()); in pushDownZero()
486 …m_S.template middleRows<3>(k).rightCols(dim-fc).applyHouseholderOnTheLeft(essential2, tau, m_works… in step()
487 …m_T.template middleRows<3>(k).rightCols(dim-fc).applyHouseholderOnTheLeft(essential2, tau, m_works… in step()
DComplexSchur.h434 m_matT.rightCols(m_matT.cols()-il).applyOnTheLeft(il, il+1, rot.adjoint());
442 m_matT.rightCols(m_matT.cols()-i).applyOnTheLeft(i, i+1, rot.adjoint());
DHessenbergDecomposition.h317 matA.rightCols(remainingSize)
DRealSchur.h405 m_matT.rightCols(size-iu+1).applyOnTheLeft(iu-1, iu, rot.adjoint()); in splitOffTwoRows()
/external/eigen/test/
Dcorners.cpp43 COMPARE_CORNER(rightCols(c), block(0,cols-c,rows,c)); in corners()
80 VERIFY_IS_EQUAL((matrix.template rightCols<c>()), (matrix.template block<rows,c>(0,cols-c))); in corners_fixedsize()
102 …VERIFY_IS_EQUAL((const_matrix.template rightCols<c>()), (const_matrix.template block<rows,c>(0,col… in corners_fixedsize()
Dproduct_small.cpp207 …C.noalias() = (B.template leftCols<M>()+B.template rightCols<M>()) * A.template topLeftCorn… in test_linear_but_not_vectorizable()
208 …R.noalias() = (B.template leftCols<M>()+B.template rightCols<M>()).eval() * A.template topLeftCorn… in test_linear_but_not_vectorizable()
Dsparse_basic.cpp551 if (incCols > 0) refMat1.rightCols(incCols).setZero(); in sparse_basic()
/external/eigen/Eigen/src/Core/
DReverse.h144 leftCols(half).swap(rightCols(half).reverse());
186 xpr.leftCols(half).swap(xpr.rightCols(half).rowwise().reverse());
DPlainObjectBase.h963 _this.bottomRightCorner(other.rows(), new_cols) = other.rightCols(new_cols);
/external/eigen/Eigen/src/plugins/
DBlockMethods.h658 inline ColsBlockXpr rightCols(Index n) in rightCols() function
665 inline ConstColsBlockXpr rightCols(Index n) const in rightCols() function
687 inline typename NColsBlockXpr<N>::Type rightCols(Index n = N)
695 inline typename ConstNColsBlockXpr<N>::Type rightCols(Index n = N) const
/external/eigen/doc/
DTutorialBlockOperations.dox164 \link DenseBase::rightCols() * \endlink</td>
166 matrix.rightCols(q);\endcode </td>
168 matrix.rightCols<q>();\endcode </td>
DAsciiQuickReference.txt68 P.rightCols<cols>() // P(:, end-cols+1:end)
69 P.rightCols(cols) // P(:, end-cols+1:end)
DSparseQuickReference.dox208 sm2.rightCols(size); // RO because sm2 is row-major
DQuickReference.dox566 mat1.rightCols(cols)\endcode
571 mat1.rightCols<cols>()\endcode
DA05_PortingFrom2To3.dox72 …des these new convenience methods: topRows(), bottomRows(), leftCols(), rightCols(). See in class …
DTutorialSparse.dox323 sm1.rightCols(ncols) = ...;
/external/eigen/unsupported/Eigen/src/Splines/
DSplineFitting.h198 …chord_lengths.rightCols(n-1) = (pts.array().leftCols(n-1) - pts.array().rightCols(n-1)).matrix().c… in ChordLengths()
/external/eigen/Eigen/src/Householder/
DHouseholderSequence.h299 dst.rightCols(rows()-m_shift-actual_k)