Home
last modified time | relevance | path

Searched refs:col_of_biggest_in_corner (Results 1 – 2 of 2) sorted by relevance

/external/eigen/Eigen/src/QR/
DFullPivHouseholderQR.h441 Index row_of_biggest_in_corner, col_of_biggest_in_corner;
446 .maxCoeff(&row_of_biggest_in_corner, &col_of_biggest_in_corner);
448 col_of_biggest_in_corner += k;
465 m_cols_transpositions.coeffRef(k) = col_of_biggest_in_corner;
470 if(k != col_of_biggest_in_corner) {
471 m_qr.col(k).swap(m_qr.col(col_of_biggest_in_corner));
/external/eigen/Eigen/src/LU/
DFullPivLU.h453 Index row_of_biggest_in_corner, col_of_biggest_in_corner; in compute() local
457 .maxCoeff(&row_of_biggest_in_corner, &col_of_biggest_in_corner); in compute()
459 col_of_biggest_in_corner += k; // need to add k to them. in compute()
480 m_colsTranspositions.coeffRef(k) = col_of_biggest_in_corner; in compute()
485 if(k != col_of_biggest_in_corner) { in compute()
486 m_lu.col(k).swap(m_lu.col(col_of_biggest_in_corner)); in compute()