OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:row_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);
447
row_of_biggest_in_corner
+= k;
464
m_rows_transpositions.coeffRef(k) =
row_of_biggest_in_corner
;
466
if(k !=
row_of_biggest_in_corner
) {
467
m_qr.row(k).tail(cols-k).swap(m_qr.row(
row_of_biggest_in_corner
).tail(cols-k));
/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);
458
row_of_biggest_in_corner
+= k; // correct the values! since they were computed in the corner,
479
m_rowsTranspositions.coeffRef(k) =
row_of_biggest_in_corner
;
481
if(k !=
row_of_biggest_in_corner
) {
482
m_lu.row(k).swap(m_lu.row(
row_of_biggest_in_corner
));
Completed in 1070 milliseconds