Skip to content
Snippets Groups Projects
Commit 1efa83f8 authored by Markus Blatt's avatar Markus Blatt
Browse files

Added doxygen documentation.

[[Imported from SVN: r7062]]
parent f2c14313
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,13 @@ 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
\param[in] matrix matrix eigenvalues are calculated for
\param[out] eigenvalues FieldVector that contains eigenvalues in
ascending order
\note LAPACK::dgeev is used to calculate the eigen values
*/
template <typename K, class C>
static void eigenValuesNonSym(const DynamicMatrix<K>& matrix,
DynamicVector<C>& eigenValues)
......
......@@ -127,7 +127,13 @@ namespace Dune {
}
}
}
/** \brief calculates the eigenvalues of a symetric field matrix
\param[in] matrix matrix eigenvalues are calculated for
\param[out] eigenvalues FieldVector that contains eigenvalues in
ascending order
\note LAPACK::dgeev is used to calculate the eigen values
*/
template <int dim, typename K, class C>
static void eigenValuesNonSym(const FieldMatrix<K, dim, dim>& matrix,
FieldVector<C, dim>& eigenValues)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment