HomeSort by relevance Sort by last modified time
    Searched refs:m_matrixU (Results 1 - 4 of 4) sorted by null

  /external/eigen/Eigen/src/SVD/
JacobiSVD.h 92 if(svd.m_computeFullU) m_qr.matrixQ().evalTo(svd.m_matrixU, m_workspace);
141 if(svd.computeU()) svd.m_matrixU = m_qr.colsPermutation();
176 if(svd.m_computeFullU) m_qr.householderQ().evalTo(svd.m_matrixU, m_workspace);
179 svd.m_matrixU.setIdentity(matrix.rows(), matrix.cols());
180 m_qr.householderQ().applyThisOnTheLeft(svd.m_matrixU, m_workspace);
239 if(svd.computeU()) svd.m_matrixU = m_qr.colsPermutation();
275 if(svd.m_computeFullU) m_qr.householderQ().evalTo(svd.m_matrixU, m_workspace);
278 svd.m_matrixU.setIdentity(matrix.rows(), matrix.cols());
279 m_qr.householderQ().applyThisOnTheLeft(svd.m_matrixU, m_workspace);
335 if(svd.computeU()) svd.m_matrixU.setIdentity(matrix.rows(), matrix.rows())
    [all...]
JacobiSVD_LAPACKE.h 60 ldu = internal::convert_index<lapack_int>(m_matrixU.outerStride()); \
61 u = (LAPACKE_TYPE*)m_matrixU.data(); \
SVDBase.h 87 return m_matrixU;
229 MatrixUType m_matrixU;
268 tmp.noalias() = m_matrixU.leftCols(l_rank).adjoint() * rhs;
304 m_matrixU.resize(m_rows, m_computeFullU ? m_rows : m_computeThinU ? m_diagSize : 0);
BDCSVD.h 202 using Base::m_matrixU;
252 if(computeU()) m_matrixU = jsvd.matrixU();
313 // Note exchange of U and V: m_matrixU is set from m_naiveV and vice versa
317 m_matrixU = MatrixX::Identity(householderU.cols(), Ucols);
318 m_matrixU.topLeftCorner(m_diagSize, m_diagSize) = naiveV.template cast<Scalar>().topLeftCorner(m_diagSize, m_diagSize);
319 householderU.applyThisOnTheLeft(m_matrixU); // FIXME this line involves a temporary buffer
    [all...]

Completed in 143 milliseconds