Searched refs:m_matrixV (Results 1 – 5 of 5) sorted by relevance
/external/eigen/Eigen/src/SVD/ |
D | JacobiSVD.h | 94 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() 184 if(svd.computeV()) svd.m_matrixV = m_qr.colsPermutation(); in run() 234 if(svd.m_computeFullV) m_qr.householderQ().evalTo(svd.m_matrixV, m_workspace); in run() 237 svd.m_matrixV.setIdentity(matrix.cols(), matrix.rows()); in run() 238 m_qr.householderQ().applyThisOnTheLeft(svd.m_matrixV, m_workspace); in run() 284 if(svd.computeV()) svd.m_matrixV.setIdentity(matrix.cols(), matrix.cols()); in run() 333 if(svd.m_computeFullV) m_qr.householderQ().evalTo(svd.m_matrixV, m_workspace); in run() 336 svd.m_matrixV.setIdentity(matrix.cols(), matrix.rows()); in run() 337 m_qr.householderQ().applyThisOnTheLeft(svd.m_matrixV, m_workspace); in run() [all …]
|
D | JacobiSVD_MKL.h | 74 if (computeV()) m_matrixV = localV.adjoint(); \
|
/external/eigen/unsupported/Eigen/src/SVD/ |
D | JacobiSVD.h | 94 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() 184 if(svd.computeV()) svd.m_matrixV = m_qr.colsPermutation(); in run() 234 if(svd.m_computeFullV) m_qr.householderQ().evalTo(svd.m_matrixV, m_workspace); in run() 237 svd.m_matrixV.setIdentity(matrix.cols(), matrix.rows()); in run() 238 m_qr.householderQ().applyThisOnTheLeft(svd.m_matrixV, m_workspace); in run() 284 if(svd.computeV()) svd.m_matrixV.setIdentity(matrix.cols(), matrix.cols()); in run() 333 if(svd.m_computeFullV) m_qr.householderQ().evalTo(svd.m_matrixV, m_workspace); in run() 336 svd.m_matrixV.setIdentity(matrix.cols(), matrix.rows()); in run() 337 m_qr.householderQ().applyThisOnTheLeft(svd.m_matrixV, m_workspace); in run() [all …]
|
D | SVDBase.h | 130 return m_matrixV; in matrixV() 169 MatrixVType m_matrixV; variable 227 m_matrixV.resize(m_cols, m_computeFullV ? m_cols in allocate()
|
D | BDCSVD.h | 172 return this->m_matrixV; in matrixU() 193 return this->m_matrixV; in matrixV() 263 if (this->m_computeFullV) this->m_matrixV = Matrix<int, Dynamic, Dynamic>::Zero(cols(), cols()); in compute() 338 this->m_matrixV = MatrixX::Identity(householderV.cols(),this->m_nonzeroSingularValues ); in copyUV() 339 this->m_matrixV.block(0, 0, this->m_nonzeroSingularValues, this->m_nonzeroSingularValues) = in copyUV() 341 this->m_matrixV = householderV * this->m_matrixV ; in copyUV() 345 this->m_matrixV = MatrixX::Identity(householderV.cols(), householderV.cols()); in copyUV() 346 …this->m_matrixV.block(0, 0, this->m_diagSize, this->m_diagSize) = temp.block(0, 0, this->m_diagSiz… in copyUV() 347 this->m_matrixV = householderV * this->m_matrixV; in copyUV()
|