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

  /external/eigen/doc/examples/
DenseBase_middleRows_int.cpp 13 cout << "A(2..3,:) =\n" << A.middleRows(2,2) << endl;
DenseBase_template_int_middleRows.cpp 13 cout << "A(1..3,:) =\n" << A.middleRows<3>(1) << endl;
  /external/eigen/test/
sparse_basic.cpp 86 VERIFY_IS_APPROX(m.middleRows(i,h), refMat.middleRows(i,h));
90 VERIFY_IS_APPROX(m.middleRows(i,h).row(r), refMat.middleRows(i,h).row(r));
97 VERIFY_IS_APPROX(m.middleRows(i,h).coeff(r,c), refMat.middleRows(i,h).coeff(r,c));
102 if(m.middleRows(i,h).coeff(r,c) != Scalar(0))
104 VERIFY_IS_APPROX(m.middleRows(i,h).coeff(r,c), refMat.middleRows(i,h).coeff(r,c));
111 VERIFY_IS_APPROX(m.middleRows(i,h).col(c), refMat.middleRows(i,h).col(c))
    [all...]
corners.cpp 39 COMPARE_CORNER(middleRows(sr,nr), block(sr,0,nr,cols));
76 VERIFY_IS_EQUAL((matrix.template middleRows<r>(sr)), (matrix.template block<r,cols>(sr,0)));
98 VERIFY_IS_EQUAL((const_matrix.template middleRows<r>(sr)), (const_matrix.template block<r,cols>(sr,0)));
  /external/eigen/Eigen/src/plugins/
BlockMethods.h 477 inline RowsBlockXpr middleRows(Index startRow, Index n)
482 /** This is the const version of middleRows(Index,Index).*/
483 inline ConstRowsBlockXpr middleRows(Index startRow, Index n) const
503 inline typename NRowsBlockXpr<N>::Type middleRows(Index startRow, Index n = N)
508 /** This is the const version of middleRows<int>().*/
510 inline typename ConstNRowsBlockXpr<N>::Type middleRows(Index startRow, Index n = N) const
    [all...]
  /external/eigen/Eigen/src/Eigenvalues/
RealQZ.h 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());
515 tmp = essential2.adjoint()*(m_Z.template middleRows<2>(k));
518 m_Z.template middleRows<2>(k) -= essential2 * (tau*tmp);

Completed in 1042 milliseconds