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/LU/
FullPivLU.h 440 Index row_of_biggest_in_corner, col_of_biggest_in_corner; local
444 .maxCoeff(&row_of_biggest_in_corner, &col_of_biggest_in_corner);
446 col_of_biggest_in_corner += k; // need to add k to them.
467 m_colsTranspositions.coeffRef(k) = col_of_biggest_in_corner;
472 if(k != col_of_biggest_in_corner) {
473 m_lu.col(k).swap(m_lu.col(col_of_biggest_in_corner));
  /external/eigen/Eigen/src/QR/
FullPivHouseholderQR.h 403 Index row_of_biggest_in_corner, col_of_biggest_in_corner; local
408 .maxCoeff(&row_of_biggest_in_corner, &col_of_biggest_in_corner);
410 col_of_biggest_in_corner += k;
427 m_cols_transpositions.coeffRef(k) = col_of_biggest_in_corner;
432 if(k != col_of_biggest_in_corner) {
433 m_qr.col(k).swap(m_qr.col(col_of_biggest_in_corner));

Completed in 65 milliseconds