Searched refs:SVDBase (Results 1 – 4 of 4) sorted by relevance
/external/eigen/unsupported/Eigen/src/SVD/ |
D | SVDBase.h | 46 class SVDBase 90 SVDBase& compute(const MatrixType& matrix, unsigned int computationOptions); 99 SVDBase& compute(const MatrixType& matrix); 182 SVDBase() in SVDBase() function 194 bool SVDBase<MatrixType>::allocate(Index rows, Index cols, unsigned int computationOptions) in allocate()
|
D | JacobiSVD.h | 493 class JacobiSVD : public SVDBase<_MatrixType> 530 : SVDBase<_MatrixType>::SVDBase() 541 : SVDBase<_MatrixType>::SVDBase() 557 : SVDBase<_MatrixType>::SVDBase() 572 SVDBase<MatrixType>& compute(const MatrixType& matrix, unsigned int computationOptions); 580 SVDBase<MatrixType>& compute(const MatrixType& matrix) 599 …eigen_assert(SVDBase<MatrixType>::computeU() && SVDBase<MatrixType>::computeV() && "JacobiSVD::sol… 623 if (SVDBase<MatrixType>::allocate(rows, cols, computationOptions)) return; 639 SVDBase<MatrixType>& 693 … if(SVDBase<MatrixType>::computeU()) this->m_matrixU.applyOnTheRight(p,q,j_left.transpose()); [all …]
|
D | BDCSVD.h | 38 class BDCSVD : public SVDBase<_MatrixType> 40 typedef SVDBase<_MatrixType> Base; 79 : SVDBase<_MatrixType>::SVDBase(), in BDCSVD() 91 : SVDBase<_MatrixType>::SVDBase(), in SVDBase() function 108 : SVDBase<_MatrixType>::SVDBase(), in SVDBase() function 127 SVDBase<MatrixType>& compute(const MatrixType& matrix, unsigned int computationOptions); 135 SVDBase<MatrixType>& compute(const MatrixType& matrix) in compute() 161 eigen_assert(SVDBase<_MatrixType>::computeU() && SVDBase<_MatrixType>::computeV() && in solve() 221 if (SVDBase<MatrixType>::allocate(rows, cols, computationOptions)) return; in allocate() 254 SVDBase<Matrix<int, Dynamic, Dynamic> >& [all …]
|
/external/eigen/unsupported/Eigen/ |
D | SVD | 25 #include "src/SVD/SVDBase.h"
|