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

/external/eigen/unsupported/Eigen/src/SVD/
H A DSVDBase.h157 inline bool computeV() const { return m_computeFullV || m_computeThinV; }
173 bool m_computeFullV, m_computeThinV; member in class:Eigen::SVDBase
214 m_computeThinV = (computationOptions & ComputeThinV) != 0;
216 eigen_assert(!(m_computeFullV && m_computeThinV) && "SVDBase: you can't ask for both full and thin V");
217 eigen_assert(EIGEN_IMPLIES(m_computeThinU || m_computeThinV, MatrixType::ColsAtCompileTime==Dynamic) &&
228 : m_computeThinV ? m_diagSize
H A DJacobiSVD.h222 else if (svd.m_computeThinV) m_workspace.resize(svd.rows());
235 else if(svd.m_computeThinV)
321 else if (svd.m_computeThinV) m_workspace.resize(svd.rows());
334 else if(svd.m_computeThinV)
627 eigen_assert(!(this->m_computeThinU || this->m_computeThinV) &&
660 if(this->m_computeThinV) this->m_matrixV.setIdentity(this->m_cols, this->m_diagSize);
H A DBDCSVD.h246 this->m_computeThinU = this->m_computeThinV;
247 this->m_computeThinV = aux;
337 if (this->m_computeThinV){
/external/eigen/Eigen/src/SVD/
H A DJacobiSVD_MKL.h60 jobvt = (m_computeFullV) ? 'A' : (m_computeThinV) ? 'S' : 'N'; \
66 ldvt = (m_computeFullV) ? m_cols : (m_computeThinV) ? m_diagSize : 1; \
H A DJacobiSVD.h222 else if (svd.m_computeThinV) m_workspace.resize(svd.rows());
235 else if(svd.m_computeThinV)
321 else if (svd.m_computeThinV) m_workspace.resize(svd.rows());
334 else if(svd.m_computeThinV)
650 inline bool computeV() const { return m_computeFullV || m_computeThinV; }
753 bool m_computeFullV, m_computeThinV; member in class:Eigen::JacobiSVD
788 m_computeThinV = (computationOptions & ComputeThinV) != 0;
790 eigen_assert(!(m_computeFullV && m_computeThinV) && "JacobiSVD: you can't ask for both full and thin V");
791 eigen_assert(EIGEN_IMPLIES(m_computeThinU || m_computeThinV, MatrixType::ColsAtCompileTime==Dynamic) &&
795 eigen_assert(!(m_computeThinU || m_computeThinV)
[all...]

Completed in 335 milliseconds