HomeSort by relevance Sort by last modified time
    Searched refs:row_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);
445 row_of_biggest_in_corner += k; // correct the values! since they were computed in the corner,
466 m_rowsTranspositions.coeffRef(k) = row_of_biggest_in_corner;
468 if(k != row_of_biggest_in_corner) {
469 m_lu.row(k).swap(m_lu.row(row_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);
409 row_of_biggest_in_corner += k;
426 m_rows_transpositions.coeffRef(k) = row_of_biggest_in_corner;
428 if(k != row_of_biggest_in_corner) {
429 m_qr.row(k).tail(cols-k).swap(m_qr.row(row_of_biggest_in_corner).tail(cols-k));

Completed in 539 milliseconds