Searched refs:m_computeThinV (Results 1 – 4 of 4) sorted by relevance
190 inline bool computeV() const { return m_computeFullV || m_computeThinV; } in computeV()234 bool m_computeFullV, m_computeThinV; variable295 m_computeThinV = (computationOptions & ComputeThinV) != 0; in allocate()297 …eigen_assert(!(m_computeFullV && m_computeThinV) && "SVDBase: you can't ask for both full and thin… in allocate()298 …eigen_assert(EIGEN_IMPLIES(m_computeThinU || m_computeThinV, MatrixType::ColsAtCompileTime==Dynami… in allocate()306 m_matrixV.resize(m_cols, m_computeFullV ? m_cols : m_computeThinV ? m_diagSize : 0); in allocate()
221 else if (svd.m_computeThinV) m_workspace.resize(svd.rows()); in allocate()234 else if(svd.m_computeThinV) in run()317 else if (svd.m_computeThinV) m_workspace.resize(svd.rows()); in allocate()330 else if(svd.m_computeThinV) in run()593 using Base::m_computeThinV;633 m_computeThinV = (computationOptions & ComputeThinV) != 0;635 …eigen_assert(!(m_computeFullV && m_computeThinV) && "JacobiSVD: you can't ask for both full and th…636 …eigen_assert(EIGEN_IMPLIES(m_computeThinU || m_computeThinV, MatrixType::ColsAtCompileTime==Dynami…640 eigen_assert(!(m_computeThinU || m_computeThinV) &&652 : m_computeThinV ? m_diagSize[all …]
58 jobvt = (m_computeFullV) ? 'A' : (m_computeThinV) ? 'S' : 'N'; \64 …ldvt = (m_computeFullV) ? internal::convert_index<lapack_int>(m_cols) : (m_computeThinV) ? interna…
202 using Base::m_computeThinV;324 Index Vcols = m_computeThinV ? m_diagSize : householderV.cols();