OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_computeThinV
(Results
1 - 2
of
2
) sorted by null
/external/eigen/Eigen/src/SVD/
JacobiSVD_MKL.h
60
jobvt = (m_computeFullV) ? 'A' : (
m_computeThinV
) ? 'S' : 'N'; \
66
ldvt = (m_computeFullV) ? m_cols : (
m_computeThinV
) ? m_diagSize : 1; \
JacobiSVD.h
215
else if (svd.
m_computeThinV
) m_workspace.resize(svd.rows());
228
else if(svd.
m_computeThinV
)
310
else if (svd.
m_computeThinV
) m_workspace.resize(svd.rows());
323
else if(svd.
m_computeThinV
)
625
inline bool computeV() const { return m_computeFullV ||
m_computeThinV
; }
665
bool m_computeFullV,
m_computeThinV
;
699
m_computeThinV
= (computationOptions & ComputeThinV) != 0;
701
eigen_assert(!(m_computeFullV &&
m_computeThinV
) && "JacobiSVD: you can't ask for both full and thin V");
702
eigen_assert(EIGEN_IMPLIES(m_computeThinU ||
m_computeThinV
, MatrixType::ColsAtCompileTime==Dynamic) &&
706
eigen_assert(!(m_computeThinU ||
m_computeThinV
) &
[
all
...]
Completed in 400 milliseconds