Skip to content
Snippets Groups Projects
Commit 9815523e authored by Sander, Oliver's avatar Sander, Oliver
Browse files

Minor documentation fixes

parent 3aabf8b1
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -23,10 +23,7 @@ public: ...@@ -23,10 +23,7 @@ public:
enum {blocklevel = 0}; enum {blocklevel = 0};
/** \brief Default constructor /** \brief Default constructor, creates uninitialized matrix
*
* Tensor is initialized containing zeros if no argument is given.
* \param eye if true tensor is initialized as identity
*/ */
SymmetricMatrix() SymmetricMatrix()
{} {}
...@@ -47,7 +44,7 @@ public: ...@@ -47,7 +44,7 @@ public:
* \param i line index * \param i line index
* \param j column index * \param j column index
* \note You need to know what you are doing: You can only access the lower * \note You need to know what you are doing: You can only access the lower
* left triangular submatrix using this methods. It requires i<=j. * left triangular submatrix using this methods. It requires i>=j.
*/ */
T& operator() (int i, int j) T& operator() (int i, int j)
{ {
...@@ -59,7 +56,7 @@ public: ...@@ -59,7 +56,7 @@ public:
* \param i line index * \param i line index
* \param j column index * \param j column index
* \note You need to know what you are doing: You can only access the lower * \note You need to know what you are doing: You can only access the lower
* left triangular submatrix using this methods. It requires i<=j. * left triangular submatrix using this methods. It requires i>=j.
*/ */
const T& operator() (int i, int j) const const T& operator() (int i, int j) const
{ {
......
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