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
433
Index
row_of_biggest_in_corner
, col_of_biggest_in_corner;
local
438
.maxCoeff(&
row_of_biggest_in_corner
, &col_of_biggest_in_corner);
439
row_of_biggest_in_corner
+= k;
456
m_rows_transpositions.coeffRef(k) =
row_of_biggest_in_corner
;
458
if(k !=
row_of_biggest_in_corner
) {
459
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
445
Index
row_of_biggest_in_corner
, col_of_biggest_in_corner;
local
449
.maxCoeff(&
row_of_biggest_in_corner
, &col_of_biggest_in_corner);
450
row_of_biggest_in_corner
+= k; // correct the values! since they were computed in the corner,
471
m_rowsTranspositions.coeffRef(k) =
row_of_biggest_in_corner
;
473
if(k !=
row_of_biggest_in_corner
) {
474
m_lu.row(k).swap(m_lu.row(
row_of_biggest_in_corner
));
Completed in 1041 milliseconds