Searched refs:m_singularValues (Results 1 – 5 of 5) sorted by relevance
/external/eigen/unsupported/Eigen/src/SVD/ |
D | SVDBase.h | 141 return m_singularValues; in singularValues() 170 SingularValuesType m_singularValues; variable 221 m_singularValues.resize(m_diagSize); in allocate()
|
D | JacobiSVD.h | 707 this->m_singularValues.coeffRef(i) = a; 717 …RealScalar maxRemainingSingularValue = this->m_singularValues.tail(this->m_diagSize-i).maxCoeff(&p… 726 std::swap(this->m_singularValues.coeffRef(i), this->m_singularValues.coeffRef(pos));
|
D | BDCSVD.h | 260 this->m_singularValues.coeffRef(i) = 0; in compute() 299 this->m_singularValues.coeffRef(i) = a; in compute()
|
/external/eigen/Eigen/src/SVD/ |
D | JacobiSVD.h | 644 return m_singularValues; 687 if(m_singularValues.size()==0) return 0; 688 RealScalar premultiplied_threshold = m_singularValues.coeff(0) * threshold(); 690 while(i>=0 && m_singularValues.coeff(i) < premultiplied_threshold) --i; 754 SingularValuesType m_singularValues; 806 m_singularValues.resize(m_diagSize); 904 m_singularValues.coeffRef(i) = a; 914 RealScalar maxRemainingSingularValue = m_singularValues.tail(m_diagSize-i).maxCoeff(&pos); 923 std::swap(m_singularValues.coeffRef(i), m_singularValues.coeffRef(pos)); 929 m_singularValues *= scale;
|
D | JacobiSVD_MKL.h | 73 …bu, jobvt, m_rows, m_cols, (MKLTYPE*)m_temp.data(), lda, (MKLRTYPE*)m_singularValues.data(), u, ld…
|