From: kanschat Date: Fri, 15 Sep 2006 14:45:52 +0000 (+0000) Subject: add documentation X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=01439b9a487eb2403f21f951215b13fd5ae3fc9f;p=dealii-svn.git add documentation git-svn-id: https://svn.dealii.org/trunk@13904 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/pointer_matrix.h b/deal.II/lac/include/lac/pointer_matrix.h index ee51ed6ae4..7f2ad988ac 100644 --- a/deal.II/lac/include/lac/pointer_matrix.h +++ b/deal.II/lac/include/lac/pointer_matrix.h @@ -426,7 +426,14 @@ class PointerMatrixVector : public PointerMatrixBase > /** * Matrix-vector product, * actually the scalar product of - * src and #m. + * src and the vector + * representing this matrix. + * + * The dimension of dst + * is 1, while that of + * src is the size of + * the vector representing this + * matrix. */ virtual void vmult (Vector& dst, const Vector& src) const; @@ -434,8 +441,15 @@ class PointerMatrixVector : public PointerMatrixBase > /** * Tranposed matrix-vector * product, actually the - * multiplication of #m with + * multiplication of the vector + * representing this matrix with * src(0). + * + * The dimension of drc + * is 1, while that of + * dst is the size of + * the vector representing this + * matrix. */ virtual void Tvmult (Vector& dst, const Vector& src) const; @@ -443,6 +457,12 @@ class PointerMatrixVector : public PointerMatrixBase > /** * Matrix-vector product, adding to * dst. + * + * The dimension of dst + * is 1, while that of + * src is the size of + * the vector representing this + * matrix. */ virtual void vmult_add (Vector& dst, const Vector& src) const; @@ -450,6 +470,12 @@ class PointerMatrixVector : public PointerMatrixBase > /** * Tranposed matrix-vector product, * adding to dst. + * + * The dimension of src + * is 1, while that of + * dst is the size of + * the vector representing this + * matrix. */ virtual void Tvmult_add (Vector& dst, const Vector& src) const;