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

  /external/eigen/Eigen/src/QR/
FullPivHouseholderQR.h 441 Index row_of_biggest_in_corner, col_of_biggest_in_corner; local
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/
FullPivLU.h 453 Index row_of_biggest_in_corner, col_of_biggest_in_corner; local
457 .maxCoeff(&row_of_biggest_in_corner, &col_of_biggest_in_corner);
459 col_of_biggest_in_corner += k; // need to add k to them.
480 m_colsTranspositions.coeffRef(k) = col_of_biggest_in_corner;
485 if(k != col_of_biggest_in_corner) {
486 m_lu.col(k).swap(m_lu.col(col_of_biggest_in_corner));

Completed in 90 milliseconds