Searched refs:m_matrixV (Results 1 - 5 of 5) sorted by relevance

/external/eigen/Eigen/src/SVD/
H A DJacobiSVD.h94 if(svd.computeV()) svd.m_matrixV = m_qr.colsPermutation();
140 if(svd.m_computeFullV) m_qr.matrixQ().evalTo(svd.m_matrixV, m_workspace);
184 if(svd.computeV()) svd.m_matrixV = m_qr.colsPermutation();
234 if(svd.m_computeFullV) m_qr.householderQ().evalTo(svd.m_matrixV, m_workspace);
237 svd.m_matrixV.setIdentity(matrix.cols(), matrix.rows());
238 m_qr.householderQ().applyThisOnTheLeft(svd.m_matrixV, m_workspace);
284 if(svd.computeV()) svd.m_matrixV.setIdentity(matrix.cols(), matrix.cols());
333 if(svd.m_computeFullV) m_qr.householderQ().evalTo(svd.m_matrixV, m_workspace);
336 svd.m_matrixV.setIdentity(matrix.cols(), matrix.rows());
337 m_qr.householderQ().applyThisOnTheLeft(svd.m_matrixV, m_workspac
748 MatrixVType m_matrixV; member in class:Eigen::JacobiSVD
[all...]
H A DJacobiSVD_MKL.h74 if (computeV()) m_matrixV = localV.adjoint(); \
/external/eigen/unsupported/Eigen/src/SVD/
H A DSVDBase.h130 return m_matrixV;
169 MatrixVType m_matrixV; member in class:Eigen::SVDBase
227 m_matrixV.resize(m_cols, m_computeFullV ? m_cols
H A DJacobiSVD.h94 if(svd.computeV()) svd.m_matrixV = m_qr.colsPermutation();
140 if(svd.m_computeFullV) m_qr.matrixQ().evalTo(svd.m_matrixV, m_workspace);
184 if(svd.computeV()) svd.m_matrixV = m_qr.colsPermutation();
234 if(svd.m_computeFullV) m_qr.householderQ().evalTo(svd.m_matrixV, m_workspace);
237 svd.m_matrixV.setIdentity(matrix.cols(), matrix.rows());
238 m_qr.householderQ().applyThisOnTheLeft(svd.m_matrixV, m_workspace);
284 if(svd.computeV()) svd.m_matrixV.setIdentity(matrix.cols(), matrix.cols());
333 if(svd.m_computeFullV) m_qr.householderQ().evalTo(svd.m_matrixV, m_workspace);
336 svd.m_matrixV.setIdentity(matrix.cols(), matrix.rows());
337 m_qr.householderQ().applyThisOnTheLeft(svd.m_matrixV, m_workspac
[all...]
H A DBDCSVD.h172 return this->m_matrixV;
193 return this->m_matrixV;
263 if (this->m_computeFullV) this->m_matrixV = Matrix<int, Dynamic, Dynamic>::Zero(cols(), cols());
338 this->m_matrixV = MatrixX::Identity(householderV.cols(),this->m_nonzeroSingularValues );
339 this->m_matrixV.block(0, 0, this->m_nonzeroSingularValues, this->m_nonzeroSingularValues) =
341 this->m_matrixV = householderV * this->m_matrixV ;
345 this->m_matrixV = MatrixX::Identity(householderV.cols(), householderV.cols());
346 this->m_matrixV.block(0, 0, this->m_diagSize, this->m_diagSize) = temp.block(0, 0, this->m_diagSize, this->m_diagSize);
347 this->m_matrixV
[all...]

Completed in 492 milliseconds