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

  /external/eigen/doc/snippets/
MatrixBase_rightCols_int.cpp 3 cout << "Here is a.rightCols(2):" << endl;
4 cout << a.rightCols(2) << endl;
5 a.rightCols(2).setZero();
MatrixBase_template_int_rightCols.cpp 3 cout << "Here is a.rightCols<2>():" << endl;
4 cout << a.rightCols<2>() << endl;
5 a.rightCols<2>().setZero();
  /external/eigen/Eigen/src/Core/
Reverse.h 144 leftCols(half).swap(rightCols(half).reverse());
186 xpr.leftCols(half).swap(xpr.rightCols(half).rowwise().reverse());
PlainObjectBase.h     [all...]
  /external/eigen/test/
corners.cpp 43 COMPARE_CORNER(rightCols(c), block(0,cols-c,rows,c));
80 VERIFY_IS_EQUAL((matrix.template rightCols<c>()), (matrix.template block<rows,c>(0,cols-c)));
102 VERIFY_IS_EQUAL((const_matrix.template rightCols<c>()), (const_matrix.template block<rows,c>(0,cols-c)));
product_small.cpp 207 C.noalias() = (B.template leftCols<M>()+B.template rightCols<M>()) * A.template topLeftCorner<M,1>();
208 R.noalias() = (B.template leftCols<M>()+B.template rightCols<M>()).eval() * A.template topLeftCorner<M,1>();
sparse_basic.cpp 551 if (incCols > 0) refMat1.rightCols(incCols).setZero();
  /external/eigen/Eigen/src/Eigenvalues/
RealQZ.h 241 m_S.rightCols(dim-j-1).applyOnTheLeft(i-1,i,G.adjoint());
242 m_T.rightCols(dim-i+1).applyOnTheLeft(i-1,i,G.adjoint());
336 m_S.rightCols(dim-i).applyOnTheLeft(i,i+1,G.adjoint());
337 m_T.rightCols(dim-i).applyOnTheLeft(i,i+1,G.adjoint());
370 m_S.rightCols(dim-firstColS).applyOnTheLeft(zz,zz+1,G.adjoint());
371 m_T.rightCols(dim-zz).applyOnTheLeft(zz,zz+1,G.adjoint());
486 m_S.template middleRows<3>(k).rightCols(dim-fc).applyHouseholderOnTheLeft(essential2, tau, m_workspace.data());
487 m_T.template middleRows<3>(k).rightCols(dim-fc).applyHouseholderOnTheLeft(essential2, tau, m_workspace.data());
HessenbergDecomposition.h 317 matA.rightCols(remainingSize)
ComplexSchur.h 434 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());
RealSchur.h 405 m_matT.rightCols(size-iu+1).applyOnTheLeft(iu-1, iu, rot.adjoint());
  /external/eigen/unsupported/Eigen/src/Splines/
SplineFitting.h 198 chord_lengths.rightCols(n-1) = (pts.array().leftCols(n-1) - pts.array().rightCols(n-1)).matrix().colwise().norm();
  /external/eigen/Eigen/src/plugins/
BlockMethods.h 658 inline ColsBlockXpr rightCols(Index n)
663 /// This is the const version of rightCols(Index).
665 inline ConstColsBlockXpr rightCols(Index n) const
687 inline typename NColsBlockXpr<N>::Type rightCols(Index n = N)
692 /// This is the const version of rightCols<int>().
695 inline typename ConstNColsBlockXpr<N>::Type rightCols(Index n = N) const
    [all...]
  /external/eigen/Eigen/src/Householder/
HouseholderSequence.h 299 dst.rightCols(rows()-m_shift-actual_k)

Completed in 703 milliseconds