OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_matrixV
(Results
1 - 5
of
5
) sorted by null
/external/eigen/Eigen/src/SVD/
JacobiSVD.h
94
if(svd.computeV()) svd.
m_matrixV
= m_qr.colsPermutation();
140
if(svd.m_computeFullV) m_qr.matrixQ().evalTo(svd.
m_matrixV
, m_workspace);
184
if(svd.computeV()) svd.
m_matrixV
= m_qr.colsPermutation();
234
if(svd.m_computeFullV) m_qr.householderQ().evalTo(svd.
m_matrixV
, m_workspace);
237
svd.
m_matrixV
.setIdentity(matrix.cols(), matrix.rows());
238
m_qr.householderQ().applyThisOnTheLeft(svd.
m_matrixV
, m_workspace);
284
if(svd.computeV()) svd.
m_matrixV
.setIdentity(matrix.cols(), matrix.cols());
333
if(svd.m_computeFullV) m_qr.householderQ().evalTo(svd.
m_matrixV
, m_workspace);
336
svd.
m_matrixV
.setIdentity(matrix.cols(), matrix.rows());
337
m_qr.householderQ().applyThisOnTheLeft(svd.
m_matrixV
, m_workspace)
[
all
...]
JacobiSVD_MKL.h
74
if (computeV())
m_matrixV
= localV.adjoint(); \
/external/eigen/unsupported/Eigen/src/SVD/
SVDBase.h
130
return
m_matrixV
;
169
MatrixVType
m_matrixV
;
227
m_matrixV
.resize(m_cols, m_computeFullV ? m_cols
JacobiSVD.h
94
if(svd.computeV()) svd.
m_matrixV
= m_qr.colsPermutation();
140
if(svd.m_computeFullV) m_qr.matrixQ().evalTo(svd.
m_matrixV
, m_workspace);
184
if(svd.computeV()) svd.
m_matrixV
= m_qr.colsPermutation();
234
if(svd.m_computeFullV) m_qr.householderQ().evalTo(svd.
m_matrixV
, m_workspace);
237
svd.
m_matrixV
.setIdentity(matrix.cols(), matrix.rows());
238
m_qr.householderQ().applyThisOnTheLeft(svd.
m_matrixV
, m_workspace);
284
if(svd.computeV()) svd.
m_matrixV
.setIdentity(matrix.cols(), matrix.cols());
333
if(svd.m_computeFullV) m_qr.householderQ().evalTo(svd.
m_matrixV
, m_workspace);
336
svd.
m_matrixV
.setIdentity(matrix.cols(), matrix.rows());
337
m_qr.householderQ().applyThisOnTheLeft(svd.
m_matrixV
, m_workspace)
[
all
...]
BDCSVD.h
172
return this->
m_matrixV
;
193
return this->
m_matrixV
;
263
if (this->m_computeFullV) this->
m_matrixV
= Matrix<int, Dynamic, Dynamic>::Zero(cols(), cols());
338
this->
m_matrixV
= MatrixX::Identity(householderV.cols(),this->m_nonzeroSingularValues );
339
this->
m_matrixV
.block(0, 0, this->m_nonzeroSingularValues, this->m_nonzeroSingularValues) =
341
this->
m_matrixV
= householderV * this->
m_matrixV
;
345
this->
m_matrixV
= MatrixX::Identity(householderV.cols(), householderV.cols());
346
this->
m_matrixV
.block(0, 0, this->m_diagSize, this->m_diagSize) = temp.block(0, 0, this->m_diagSize, this->m_diagSize);
347
this->
m_matrixV
= householderV * this->m_matrixV
[
all
...]
Completed in 71 milliseconds