OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_computeThinU
(Results
1 - 2
of
2
) sorted by null
/external/eigen/Eigen/src/SVD/
JacobiSVD.h
164
else if (svd.
m_computeThinU
) m_workspace.resize(svd.cols());
174
else if(svd.
m_computeThinU
)
260
else if (svd.
m_computeThinU
) m_workspace.resize(svd.cols());
270
else if(svd.
m_computeThinU
)
623
inline bool computeU() const { return m_computeFullU ||
m_computeThinU
; }
664
bool m_computeFullU,
m_computeThinU
;
697
m_computeThinU
= (computationOptions & ComputeThinU) != 0;
700
eigen_assert(!(m_computeFullU &&
m_computeThinU
) && "JacobiSVD: you can't ask for both full and thin U");
702
eigen_assert(EIGEN_IMPLIES(
m_computeThinU
|| m_computeThinV, MatrixType::ColsAtCompileTime==Dynamic) &&
706
eigen_assert(!(
m_computeThinU
|| m_computeThinV) &
[
all
...]
JacobiSVD_MKL.h
59
jobu = (m_computeFullU) ? 'A' : (
m_computeThinU
) ? 'S' : 'N'; \
Completed in 445 milliseconds