Returns the value of a single matrix entry ! * Returns the value of the matrix position (i,j) element. * * @param i The row index * @param j The column index */
| 169 | * @param j The column index |
| 170 | */ |
| 171 | double value(size_t i, size_t j) const { |
| 172 | return m_data[m_nrows*j + i]; |
| 173 | } |
| 174 | |
| 175 | //! Number of rows |
| 176 | size_t nRows() const { |
no outgoing calls
no test coverage detected