Lines Matching full:rows
163 inline Index rows() const { return m_copyMatrix.rows(); }
223 eigen_assert(rows()==b.rows()
224 && "UmfPackLU::solve(): invalid number of rows of the right hand side matrix b");
236 eigen_assert(rows()==b.rows()
237 && "UmfPackLU::solve(): invalid number of rows of the right hand side matrix b");
303 m_copyMatrix.resize(mat.rows(), mat.cols());
338 errorCode = umfpack_symbolic(m_copyMatrix.rows(), m_copyMatrix.cols(), m_outerIndexPtr, m_innerIndexPtr, m_valuePtr,
389 int lnz, unz, rows, cols, nz_udiag;
390 umfpack_get_lunz(&lnz, &unz, &rows, &cols, &nz_udiag, m_numeric, Scalar());
393 m_l.resize(rows,(std::min)(rows,cols));
396 m_u.resize((std::min)(rows,cols),cols);
399 m_p.resize(rows);