HomeSort by relevance Sort by last modified time
    Searched refs:rightCols (Results 1 - 10 of 10) 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/unsupported/Eigen/src/Splines/
SplineFitting.h 73 chord_lengths.rightCols(n-1) = (pts.array().leftCols(n-1) - pts.array().rightCols(n-1)).matrix().colwise().norm();
  /external/eigen/test/
corners.cpp 43 COMPARE_CORNER(rightCols(c), block(0,cols-c,rows,c));
70 VERIFY_IS_EQUAL((matrix.template rightCols<c>()), (matrix.template block<rows,c>(0,cols-c)));
82 VERIFY_IS_EQUAL((const_matrix.template rightCols<c>()), (const_matrix.template block<rows,c>(0,cols-c)));
  /external/eigen/Eigen/src/plugins/
BlockMethods.h 436 inline ColsBlockXpr rightCols(Index n)
441 /** This is the const version of rightCols(Index).*/
442 inline ConstColsBlockXpr rightCols(Index n) const
457 inline typename NColsBlockXpr<N>::Type rightCols()
462 /** This is the const version of rightCols<int>().*/
464 inline typename ConstNColsBlockXpr<N>::Type rightCols() const
  /external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h 315 matA.rightCols(remainingSize)
ComplexSchur.h 371 m_matT.rightCols(m_matT.cols()-il).applyOnTheLeft(il, il+1, rot.adjoint());
379 m_matT.rightCols(m_matT.cols()-i).applyOnTheLeft(i, i+1, rot.adjoint());
RealSchur.h 324 m_matT.rightCols(size-iu+1).applyOnTheLeft(iu-1, iu, rot.adjoint());
  /external/eigen/Eigen/src/Householder/
HouseholderSequence.h 294 dst.rightCols(rows()-m_shift-actual_k)
  /external/eigen/Eigen/src/Core/
PlainObjectBase.h 703 _this.bottomRightCorner(other.rows(), new_cols) = other.rightCols(new_cols);
    [all...]

Completed in 626 milliseconds