Searched refs:m_pmat (Results 1 - 1 of 1) sorted by relevance

/external/eigen/Eigen/src/SparseQR/
H A DSparseQR.h108 inline Index rows() const { return m_pmat.rows(); }
112 inline Index cols() const { return m_pmat.cols();}
252 QRMatrixType m_pmat; // Temporary matrix member in class:Eigen::SparseQR
334 m_pmat = mat;
335 m_pmat.uncompress(); // To have the innerNonZeroPtr allocated
340 m_pmat.outerIndexPtr()[p] = mat.outerIndexPtr()[i];
341 m_pmat.innerNonZeroPtr()[p] = mat.outerIndexPtr()[i+1] - mat.outerIndexPtr()[i];
351 for (int j = 0; j < n; j++) max2Norm = (max)(max2Norm, m_pmat.col(j).norm());
376 for (typename MatrixType::InnerIterator itp(m_pmat, col); itp || !found_diag; ++itp)
516 internal::coletree(m_pmat, m_etre
[all...]

Completed in 76 milliseconds