Scythe-1.0.3
template<typename T_type = double, matrix_order ORDER = Col, matrix_style STYLE = Concrete>
T_type& scythe::Matrix< T_type, ORDER, STYLE >::operator() ( uint  i,
uint  j 
) [inline]

Access or modify an element in this Matrix.

This indexing operator allows the caller to access or modify the (i, j)th element of this Matrix, where i is an element of 0, 1, ..., rows - 1 and j is an element of 0, 1, ..., columns - 1.

Parameters:
iThe row index of the element to access/modify.
jThe column index of the element to access/modify.
See also:
operator[](uint)
operator[](uint) const
operator()(uint)
operator()(uint) const
operator()(uint, uint) const
Exceptions:
scythe_bounds_error(Level 3)