Lines Matching full:rows
153 inline Index rows() const { return m_copyMatrix.rows(); }
209 eigen_assert(rows()==b.rows()
210 && "UmfPackLU::solve(): invalid number of rows of the right hand side matrix b");
222 // eigen_assert(rows()==b.rows()
223 // && "UmfPAckLU::solve(): invalid number of rows of the right hand side matrix b");
243 errorCode = umfpack_symbolic(matrix.rows(), matrix.cols(), m_outerIndexPtr, m_innerIndexPtr, m_valuePtr,
300 m_copyMatrix.resize(mat.rows(), mat.cols());
347 int lnz, unz, rows, cols, nz_udiag;
348 umfpack_get_lunz(&lnz, &unz, &rows, &cols, &nz_udiag, m_numeric, Scalar());
351 m_l.resize(rows,(std::min)(rows,cols));
354 m_u.resize((std::min)(rows,cols),cols);
357 m_p.resize(rows);