OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:computeU
(Results
1 - 2
of
2
) sorted by null
/external/eigen/Eigen/src/SVD/
SVDBase.h
86
eigen_assert(
computeU
() && "This SVD decomposition didn't compute U. Did you ask for it?");
188
inline bool
computeU
() const { return m_computeFullU || m_computeThinU; }
209
eigen_assert(
computeU
() && computeV() && "SVD::solve() requires both unitaries U and V to be computed (thin unitaries suffice).");
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
DGMRES.h
425
bool
computeU
= true;
428
schurofH.computeFromHessenberg(m_Hes.topLeftCorner(it,it), matrixQ,
computeU
);
Completed in 647 milliseconds