Searched refs:m_computeThinU (Results 1 - 4 of 4) sorted by relevance

/external/eigen/Eigen/src/SVD/
H A DSVDBase.h188 inline bool computeU() const { return m_computeFullU || m_computeThinU; }
233 bool m_computeFullU, m_computeThinU; member in class:Eigen::SVDBase
293 m_computeThinU = (computationOptions & ComputeThinU) != 0;
296 eigen_assert(!(m_computeFullU && m_computeThinU) && "SVDBase: you can't ask for both full and thin U");
298 eigen_assert(EIGEN_IMPLIES(m_computeThinU || m_computeThinV, MatrixType::ColsAtCompileTime==Dynamic) &&
304 m_matrixU.resize(m_rows, m_computeFullU ? m_rows : m_computeThinU ? m_diagSize : 0);
H A DJacobiSVD.h167 else if (svd.m_computeThinU) m_workspace.resize(svd.cols());
177 else if(svd.m_computeThinU)
266 else if (svd.m_computeThinU) m_workspace.resize(svd.cols());
276 else if(svd.m_computeThinU)
591 using Base::m_computeThinU;
631 m_computeThinU = (computationOptions & ComputeThinU) != 0;
634 eigen_assert(!(m_computeFullU && m_computeThinU) && "JacobiSVD: you can't ask for both full and thin U");
636 eigen_assert(EIGEN_IMPLIES(m_computeThinU || m_computeThinV, MatrixType::ColsAtCompileTime==Dynamic) &&
640 eigen_assert(!(m_computeThinU || m_computeThinV) &&
648 : m_computeThinU
[all...]
H A DJacobiSVD_LAPACKE.h57 jobu = (m_computeFullU) ? 'A' : (m_computeThinU) ? 'S' : 'N'; \
H A DBDCSVD.h201 using Base::m_computeThinU;
317 Index Ucols = m_computeThinU ? m_diagSize : householderU.cols();

Completed in 59 milliseconds