Skip to content
Snippets Groups Projects
Commit 87fa26a9 authored by Tom Fischer's avatar Tom Fischer
Browse files

added documentation to method getValue()

parent e6d563ee
No related branches found
No related tags found
No related merge requests found
......@@ -125,6 +125,13 @@ public:
return 1;
}
/**
* This is an access operator to a non-zero matrix entry. If the value of
* a non-existing matrix entry is requested it will be 0.0 returned.
* @param row the row number
* @param col the column number
* @return The corresponding matrix entry or 0.0.
*/
double getValue(IDX_TYPE row, IDX_TYPE col)
{
assert(0 <= row && row < MatrixBase::_n_rows);
......
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