From: wolf Date: Fri, 26 Mar 2004 20:29:35 +0000 (+0000) Subject: Some more words as class documentation. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ae88ce9111a2106aa5a65703bb105621d948b2f;p=dealii-svn.git Some more words as class documentation. git-svn-id: https://svn.dealii.org/trunk@8886 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/sparse_matrix.h b/deal.II/lac/include/lac/sparse_matrix.h index d913b2af2a..56d00d0106 100644 --- a/deal.II/lac/include/lac/sparse_matrix.h +++ b/deal.II/lac/include/lac/sparse_matrix.h @@ -28,7 +28,12 @@ template class FullMatrix; */ /** - * Sparse matrix. + * Sparse matrix. This class implements the function to store values in the + * locations of a sparse matrix denoted by a @ref SparsityPattern. The + * separation of sparsity pattern and values is done since one can store data + * elements of different type in these locations without the SparsityPattern + * having to know this, and more importantly one can associate more than one + * matrix with the same sparsity pattern. * * @ref Instantiations some