From 0fa63674cac2dd11e62ade71dfe7f4da90219582 Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@dune-project.org> Date: Wed, 20 Mar 2013 14:54:17 +0000 Subject: [PATCH] properly spell 'symmetric' [[Imported from SVN: r7431]] --- dune/common/dynmatrixev.cc | 2 +- dune/common/dynmatrixev.hh | 2 +- dune/common/fmatrixev.cc | 4 ++-- dune/common/fmatrixev.hh | 10 +++++----- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/dune/common/dynmatrixev.cc b/dune/common/dynmatrixev.cc index 1a6eed61b..dd9df8929 100644 --- a/dune/common/dynmatrixev.cc +++ b/dune/common/dynmatrixev.cc @@ -15,7 +15,7 @@ #if HAVE_LAPACK -// nonsymetric matrices +// nonsymmetric matrices #define DGEEV_FORTRAN FC_FUNC (dgeev, DGEEV) // dsyev declaration (in liblapack) diff --git a/dune/common/dynmatrixev.hh b/dune/common/dynmatrixev.hh index 60026a7f3..ae8412230 100644 --- a/dune/common/dynmatrixev.hh +++ b/dune/common/dynmatrixev.hh @@ -24,7 +24,7 @@ namespace Dune { const long int* ldvl, double* vr, const long int* ldvr, double* work, const long int* lwork, const long int* info); - /** \brief calculates the eigenvalues of a symetric field matrix + /** \brief calculates the eigenvalues of a symmetric field matrix \param[in] matrix matrix eigenvalues are calculated for \param[out] eigenValues FieldVector that contains eigenvalues in ascending order diff --git a/dune/common/fmatrixev.cc b/dune/common/fmatrixev.cc index d720d509c..664a2ae05 100644 --- a/dune/common/fmatrixev.cc +++ b/dune/common/fmatrixev.cc @@ -15,10 +15,10 @@ #if HAVE_LAPACK -// symetric matrices +// symmetric matrices #define DSYEV_FORTRAN FC_FUNC (dsyev, DSYEV) -// nonsymetric matrices +// nonsymmetric matrices #define DGEEV_FORTRAN FC_FUNC (dgeev, DGEEV) // dsyev declaration (in liblapack) diff --git a/dune/common/fmatrixev.hh b/dune/common/fmatrixev.hh index 6ea9cf1a1..e2d616cd3 100644 --- a/dune/common/fmatrixev.hh +++ b/dune/common/fmatrixev.hh @@ -36,7 +36,7 @@ namespace Dune { const long int* ldvl, double* vr, const long int* ldvr, double* work, const long int* lwork, const long int* info); - /** \brief calculates the eigenvalues of a symetric field matrix + /** \brief calculates the eigenvalues of a symmetric field matrix \param[in] matrix matrix eigenvalues are calculated for \param[out] eigenvalues FieldVector that contains eigenvalues in ascending order @@ -48,7 +48,7 @@ namespace Dune { eigenvalues[0] = matrix[0][0]; } - /** \brief calculates the eigenvalues of a symetric field matrix + /** \brief calculates the eigenvalues of a symmetric field matrix \param[in] matrix matrix eigenvalues are calculated for \param[out] eigenvalues FieldVector that contains eigenvalues in ascending order @@ -78,12 +78,12 @@ namespace Dune { eigenvalues[1] = p + q; } - /** \brief calculates the eigenvalues of a symetric field matrix + /** \brief calculates the eigenvalues of a symmetric field matrix \param[in] matrix matrix eigenvalues are calculated for \param[out] eigenvalues FieldVector that contains eigenvalues in ascending order - \note LAPACK::dsyev is used to calculate the eigen values + \note LAPACK::dsyev is used to calculate the eigenvalues */ template <int dim, typename K> static void eigenValues(const FieldMatrix<K, dim, dim>& matrix, @@ -127,7 +127,7 @@ namespace Dune { } } } - /** \brief calculates the eigenvalues of a symetric field matrix + /** \brief calculates the eigenvalues of a symmetric field matrix \param[in] matrix matrix eigenvalues are calculated for \param[out] eigenValues FieldVector that contains eigenvalues in ascending order -- GitLab