From ea0639226b38ae975733257b49156d6e5a1562ca Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 8 Apr 2015 10:58:52 -0500 Subject: [PATCH] Update documentation. --- include/deal.II/lac/block_sparse_matrix_ez.h | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/include/deal.II/lac/block_sparse_matrix_ez.h b/include/deal.II/lac/block_sparse_matrix_ez.h index 27b2069207..472ea1aa55 100644 --- a/include/deal.II/lac/block_sparse_matrix_ez.h +++ b/include/deal.II/lac/block_sparse_matrix_ez.h @@ -168,14 +168,18 @@ public: size_type n_cols () const DEAL_II_DEPRECATED; /** - * Return the dimension of the codomain (or range) space. To remember: - * the matrix is of dimension $m \times n$. + * Return number of rows of this matrix, which equals the dimension of + * the codomain (or range) space. It is the sum of the number of rows over the + * sub-matrix blocks of this matrix. Recall that the matrix is of size m() + * times n(). */ size_type m () const; /** - * Return the dimension of the domain space. To remember: the matrix is of - * dimension $m \times n$. + * Return number of columns of this matrix, which equals the dimension of + * the domain space. It is the sum of the number of columns over the + * sub-matrix blocks of this matrix. Recall that the matrix is of size m() + * times n(). */ size_type n () const; -- 2.39.5