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

  /external/eigen/Eigen/src/SVD/
JacobiSVD.h 93 if(svd.computeV()) svd.m_matrixV = m_qr.colsPermutation();
140 if(svd.m_computeFullV) m_qr.matrixQ().evalTo(svd.m_matrixV, m_workspace);
182 if(svd.computeV()) svd.m_matrixV = m_qr.colsPermutation();
233 if(svd.m_computeFullV) m_qr.householderQ().evalTo(svd.m_matrixV, m_workspace);
236 svd.m_matrixV.setIdentity(matrix.cols(), matrix.rows());
237 m_qr.householderQ().applyThisOnTheLeft(svd.m_matrixV, m_workspace);
281 if(svd.computeV()) svd.m_matrixV.setIdentity(matrix.cols(), matrix.cols());
329 if(svd.m_computeFullV) m_qr.householderQ().evalTo(svd.m_matrixV, m_workspace);
332 svd.m_matrixV.setIdentity(matrix.cols(), matrix.rows());
333 m_qr.householderQ().applyThisOnTheLeft(svd.m_matrixV, m_workspace)
    [all...]
SVDBase.h 103 return m_matrixV;
230 MatrixVType m_matrixV;
270 dst = m_matrixV.leftCols(l_rank) * tmp;
306 m_matrixV.resize(m_cols, m_computeFullV ? m_cols : m_computeThinV ? m_diagSize : 0);
JacobiSVD_LAPACKE.h 72 if (computeV()) m_matrixV = localV.adjoint(); \
BDCSVD.h 203 using Base::m_matrixV;
253 if(computeV()) m_matrixV = jsvd.matrixV();
324 m_matrixV = MatrixX::Identity(householderV.cols(), Vcols);
325 m_matrixV.topLeftCorner(m_diagSize, m_diagSize) = naiveU.template cast<Scalar>().topLeftCorner(m_diagSize, m_diagSize);
326 householderV.applyThisOnTheLeft(m_matrixV); // FIXME this line involves a temporary buffer
    [all...]

Completed in 1305 milliseconds