Searched defs:colsPermutation (Results 1 - 5 of 5) sorted by relevance

/external/eigen/Eigen/src/QR/
H A DColPivHouseholderQR.h180 const PermutationType& colsPermutation() const function in class:Eigen::ColPivHouseholderQR
551 for(Index i = 0; i < nonzero_pivots; ++i) dst.row(dec().colsPermutation().indices().coeff(i)) = c.row(i);
552 for(Index i = nonzero_pivots; i < cols; ++i) dst.row(dec().colsPermutation().indices().coeff(i)).setZero();
H A DFullPivHouseholderQR.h170 const PermutationType& colsPermutation() const function in class:Eigen::FullPivHouseholderQR
526 for(Index i = 0; i < dec().rank(); ++i) dst.row(dec().colsPermutation().indices().coeff(i)) = c.row(i);
527 for(Index i = dec().rank(); i < cols; ++i) dst.row(dec().colsPermutation().indices().coeff(i)).setZero();
/external/eigen/Eigen/src/SPQRSupport/
H A DSuiteSparseQRSupport.h43 * P is the column permutation. Use colsPermutation() to get it.
157 dest.topRows(cols()) = colsPermutation() * y.topRows(cols());
179 PermutationType colsPermutation() const function in class:Eigen::SPQR
/external/eigen/Eigen/src/SparseLU/
H A DSparseLU.h151 * \sa colsPermutation()
161 inline const PermutationType& colsPermutation() const function in class:Eigen::SparseLU
243 X.col(j) = colsPermutation().inverse() * X.col(j);
/external/eigen/Eigen/src/SparseQR/
H A DSparseQR.h48 * rank-revealing permutations. Use colsPermutation() to get it.
152 const PermutationType& colsPermutation() const function in class:Eigen::SparseQR
183 if (m_perm_c.size()) dest = colsPermutation() * y.topRows(cols());

Completed in 1791 milliseconds