Home
last modified time | relevance | path

Searched refs:m_matrixV (Results 1 – 4 of 4) sorted by relevance

/external/eigen/Eigen/src/SVD/
DJacobiSVD.h93 if(svd.computeV()) svd.m_matrixV = m_qr.colsPermutation(); in run()
140 if(svd.m_computeFullV) m_qr.matrixQ().evalTo(svd.m_matrixV, m_workspace); in run()
182 if(svd.computeV()) svd.m_matrixV = m_qr.colsPermutation(); in run()
233 if(svd.m_computeFullV) m_qr.householderQ().evalTo(svd.m_matrixV, m_workspace); in run()
236 svd.m_matrixV.setIdentity(matrix.cols(), matrix.rows()); in run()
237 m_qr.householderQ().applyThisOnTheLeft(svd.m_matrixV, m_workspace); in run()
281 if(svd.computeV()) svd.m_matrixV.setIdentity(matrix.cols(), matrix.cols()); in run()
329 if(svd.m_computeFullV) m_qr.householderQ().evalTo(svd.m_matrixV, m_workspace); in run()
332 svd.m_matrixV.setIdentity(matrix.cols(), matrix.rows()); in run()
333 m_qr.householderQ().applyThisOnTheLeft(svd.m_matrixV, m_workspace); in run()
[all …]
DSVDBase.h103 return m_matrixV; in matrixV()
230 MatrixVType m_matrixV; variable
270 dst = m_matrixV.leftCols(l_rank) * tmp; in _solve_impl()
306 m_matrixV.resize(m_cols, m_computeFullV ? m_cols : m_computeThinV ? m_diagSize : 0); in allocate()
DJacobiSVD_LAPACKE.h72 if (computeV()) m_matrixV = localV.adjoint(); \
DBDCSVD.h204 using Base::m_matrixV;
254 if(computeV()) m_matrixV = jsvd.matrixV();
325 m_matrixV = MatrixX::Identity(householderV.cols(), Vcols);
326m_matrixV.topLeftCorner(m_diagSize, m_diagSize) = naiveU.template cast<Scalar>().topLeftCorner(m_d…
327 householderV.applyThisOnTheLeft(m_matrixV); // FIXME this line involves a temporary buffer