Home | History | Annotate | Download | only in SparseQR

Lines Matching refs:SparseMatrix

61   * \tparam _MatrixType The type of the sparse matrix A, must be a column-major SparseMatrix<>
67 * \warning The input sparse matrix A must be in compressed mode (see SparseMatrix::makeCompressed()).
83 typedef SparseMatrix<Scalar,ColMajor,StorageIndex> QRMatrixType;
99 * \warning The matrix \a mat must be in compressed mode (see SparseMatrix::makeCompressed()).
110 * \warning The matrix \a mat must be in compressed mode (see SparseMatrix::makeCompressed()).
138 * SparseMatrix<double> R = qr.matrixR(); // column-major, not sorted!
139 * SparseMatrix<double,RowMajor> Rr = qr.matrixR(); // row-major, sorted
140 * SparseMatrix<double> Rc = Rr; // column-major, sorted
163 * To get a plain SparseMatrix representation of Q:
165 * SparseMatrix<double> Q;
166 * Q = SparseQR<SparseMatrix<double> >(A).matrixQ();
267 SparseMatrix<Scalar, RowMajor, Index> mQrm(this->m_Q);
299 * \warning The matrix \a mat must be in compressed mode (see SparseMatrix::makeCompressed()).