-//---------------------------- full_matrix.templates.h ---------------------------
+//---------------------------------------------------------------------------
// $Id$
// Version: $Name$
//
// to the file deal.II/doc/license.html for the text and
// further information on this license.
//
-//---------------------------- full_matrix.templates.h ---------------------------
+//---------------------------------------------------------------------------
#ifndef __deal2__full_matrix_templates_h
#define __deal2__full_matrix_templates_h
template <typename number>
number
-FullMatrix<number>::norm2 () const
+FullMatrix<number>::frobenius_norm () const
{
Assert (!this->empty(), ExcEmptyMatrix());
+template <typename number>
+number
+FullMatrix<number>::norm2 () const
+{
+ return frobenius_norm();
+}
+
+
+
template <typename number>
number
FullMatrix<number>::relative_symmetry_norm2 () const