Searched defs:col_of_biggest_in_corner (Results 1 - 2 of 2) sorted by relevance

/external/eigen/Eigen/src/LU/
H A DFullPivLU.h445 Index row_of_biggest_in_corner, col_of_biggest_in_corner; local
449 .maxCoeff(&row_of_biggest_in_corner, &col_of_biggest_in_corner);
451 col_of_biggest_in_corner += k; // need to add k to them.
472 m_colsTranspositions.coeffRef(k) = col_of_biggest_in_corner;
477 if(k != col_of_biggest_in_corner) {
478 m_lu.col(k).swap(m_lu.col(col_of_biggest_in_corner));
/external/eigen/Eigen/src/QR/
H A DFullPivHouseholderQR.h433 Index row_of_biggest_in_corner, col_of_biggest_in_corner; local
438 .maxCoeff(&row_of_biggest_in_corner, &col_of_biggest_in_corner);
440 col_of_biggest_in_corner += k;
457 m_cols_transpositions.coeffRef(k) = col_of_biggest_in_corner;
462 if(k != col_of_biggest_in_corner) {
463 m_qr.col(k).swap(m_qr.col(col_of_biggest_in_corner));

Completed in 433 milliseconds