Home | History | Annotate | Download | only in SparseQR

Lines Matching refs:m_R

143     const QRMatrixType& matrixR() const { return m_R; }
279 QRMatrixType m_R; // The triangular factor matrix
330 m_R.resize(m, n);
334 m_R.reserve(2*mat.nonZeros()); //FIXME Get a more accurate estimation through symbolic factorization with the etree
362 m_R.setZero();
418 m_R.startVec(col);
540 m_R.insertBackByOuterInnerUnordered(col, curIdx) = tval(curIdx);
547 m_R.insertBackByOuterInner(col, nonzeroCol) = beta;
578 m_R.finalize();
579 m_R.makeCompressed();
587 QRMatrixType tempR(m_R);
588 m_R = tempR * m_pivotperm;