Home
last modified time | relevance | path

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

/external/eigen/Eigen/src/SVD/
DJacobiSVD.h92 if(svd.m_computeFullU) m_qr.matrixQ().evalTo(svd.m_matrixU, m_workspace); in run()
141 if(svd.computeU()) svd.m_matrixU = m_qr.colsPermutation(); in run()
176 if(svd.m_computeFullU) m_qr.householderQ().evalTo(svd.m_matrixU, m_workspace); in run()
179 svd.m_matrixU.setIdentity(matrix.rows(), matrix.cols()); in run()
180 m_qr.householderQ().applyThisOnTheLeft(svd.m_matrixU, m_workspace); in run()
239 if(svd.computeU()) svd.m_matrixU = m_qr.colsPermutation(); in run()
275 if(svd.m_computeFullU) m_qr.householderQ().evalTo(svd.m_matrixU, m_workspace); in run()
278 svd.m_matrixU.setIdentity(matrix.rows(), matrix.cols()); in run()
279 m_qr.householderQ().applyThisOnTheLeft(svd.m_matrixU, m_workspace); in run()
335 if(svd.computeU()) svd.m_matrixU.setIdentity(matrix.rows(), matrix.rows()); in run()
[all …]
DSVDBase.h87 return m_matrixU; in matrixU()
229 MatrixUType m_matrixU; variable
268 tmp.noalias() = m_matrixU.leftCols(l_rank).adjoint() * rhs; in _solve_impl()
304 m_matrixU.resize(m_rows, m_computeFullU ? m_rows : m_computeThinU ? m_diagSize : 0); in allocate()
DJacobiSVD_LAPACKE.h60 ldu = internal::convert_index<lapack_int>(m_matrixU.outerStride()); \
61 u = (LAPACKE_TYPE*)m_matrixU.data(); \
DBDCSVD.h203 using Base::m_matrixU;
253 if(computeU()) m_matrixU = jsvd.matrixU();
318 m_matrixU = MatrixX::Identity(householderU.cols(), Ucols);
319m_matrixU.topLeftCorner(m_diagSize, m_diagSize) = naiveV.template cast<Scalar>().topLeftCorner(m_d…
320 householderU.applyThisOnTheLeft(m_matrixU); // FIXME this line involves a temporary buffer