Home | History | Annotate | Download | only in SparseExtra

Lines Matching full:rows

25   * nonzero and outer_size is the number of columns if the matrix is column-major and the number of rows
80 inline Index rows() const { return IsRowMajor ? outerSize() : m_innerSize; }
197 void resize(Index rows, Index cols)
199 const Index outerSize = IsRowMajor ? rows : cols;
200 m_innerSize = IsRowMajor ? cols : rows;
208 void resizeAndKeepData(Index rows, Index cols)
210 const Index outerSize = IsRowMajor ? rows : cols;
211 const Index innerSize = IsRowMajor ? cols : rows;
233 EIGEN_DEPRECATED inline DynamicSparseMatrix(Index rows, Index cols)
236 resize(rows, cols);
269 resize(other.rows(), other.cols());