HomeSort by relevance Sort by last modified time
    Searched defs:m_computeThinV (Results 1 - 2 of 2) sorted by null

  /external/eigen/unsupported/Eigen/src/SVD/
SVDBase.h 157 inline bool computeV() const { return m_computeFullV || m_computeThinV; }
173 bool m_computeFullV, m_computeThinV;
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
  /external/eigen/Eigen/src/SVD/
JacobiSVD.h 222 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; }
758 bool m_computeFullV, m_computeThinV;
794 m_computeThinV = (computationOptions & ComputeThinV) != 0;
796 eigen_assert(!(m_computeFullV && m_computeThinV) && "JacobiSVD: you can't ask for both full and thin V");
797 eigen_assert(EIGEN_IMPLIES(m_computeThinU || m_computeThinV, MatrixType::ColsAtCompileTime==Dynamic) &
    [all...]

Completed in 166 milliseconds