OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:computeV
(Results
1 - 5
of
5
) sorted by null
/external/eigen/Eigen/src/SVD/
JacobiSVD_MKL.h
67
if (
computeV
()) { \
74
if (
computeV
()) m_matrixV = localV.adjoint(); \
JacobiSVD.h
94
if(svd.
computeV
()) svd.m_matrixV = m_qr.colsPermutation();
184
if(svd.
computeV
()) svd.m_matrixV = m_qr.colsPermutation();
284
if(svd.
computeV
()) svd.m_matrixV.setIdentity(matrix.cols(), matrix.cols());
402
if(svd.
computeV
()) svd.m_matrixV.col(q) *= z;
632
eigen_assert(
computeV
() && "This JacobiSVD decomposition didn't compute V. Did you ask for it?");
650
inline bool
computeV
() const { return m_computeFullV || m_computeThinV; }
666
eigen_assert(computeU() &&
computeV
() && "JacobiSVD::solve() requires both unitaries U and V to be computed (thin unitaries suffice).");
[
all
...]
/external/eigen/unsupported/Eigen/src/SVD/
SVDBase.h
129
eigen_assert(
computeV
() && "This SVD decomposition didn't compute V. Did you ask for it?");
157
inline bool
computeV
() const { return m_computeFullV || m_computeThinV; }
BDCSVD.h
161
eigen_assert(SVDBase<_MatrixType>::computeU() && SVDBase<_MatrixType>::
computeV
() &&
171
eigen_assert(this->
computeV
() && "This SVD decomposition didn't compute U. Did you ask for it?");
192
eigen_assert(this->
computeV
() && "This SVD decomposition didn't compute V. Did you ask for it?");
225
compV = this->
computeV
();
230
compU = this->
computeV
();
241
if (this->computeU()||this->
computeV
()){
334
if (this->
computeV
()){
JacobiSVD.h
94
if(svd.
computeV
()) svd.m_matrixV = m_qr.colsPermutation();
184
if(svd.
computeV
()) svd.m_matrixV = m_qr.colsPermutation();
284
if(svd.
computeV
()) svd.m_matrixV.setIdentity(matrix.cols(), matrix.cols());
397
if(svd.
computeV
()) svd.m_matrixV.col(q) *= z;
599
eigen_assert(SVDBase<MatrixType>::computeU() && SVDBase<MatrixType>::
computeV
() && "JacobiSVD::solve() requires both unitaries U and V to be computed (thin unitaries suffice).");
696
if(SVDBase<MatrixType>::
computeV
()) this->m_matrixV.applyOnTheRight(p,q,j_right);
728
if(SVDBase<MatrixType>::
computeV
()) this->m_matrixV.col(pos).swap(this->m_matrixV.col(i));
Completed in 476 milliseconds