From 0e3439b73792317e6ee5c6041b943782ef84f974 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 3 Sep 2001 16:07:41 +0000 Subject: [PATCH] FullMatrix::operator *= git-svn-id: https://svn.dealii.org/trunk@4936 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/full_matrix.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/deal.II/lac/include/lac/full_matrix.h b/deal.II/lac/include/lac/full_matrix.h index 0f7eb948fd..fff2ca9177 100644 --- a/deal.II/lac/include/lac/full_matrix.h +++ b/deal.II/lac/include/lac/full_matrix.h @@ -195,6 +195,12 @@ class FullMatrix : public vector2d void add (const number s, const FullMatrix &B); + /** + * Scale the entire matrix by a + * fixed factor. + */ + FullMatrix & operator *= (const double factor); + /** * Weighted addition of the * transpose of @p{B} to @p{this}. -- 2.39.5