|
algebramix_doc 0.3
|
#include <matrix.hpp>
Definition at line 310 of file matrix.hpp.
| typedef implementation<matrix_linear,V> Mat |
Definition at line 312 of file matrix.hpp.
| matrix_iterator_rep | ( | const matrix< C, V > & | m2, |
| nat | c = Mat::def_cols |
||
| ) | [inline] |
Definition at line 323 of file matrix.hpp.
:
iterator_rep<C> (CF(m)), m(m2), i(0), j(0), nc(c) {}
| void advance | ( | ) | [inline, protected] |
Definition at line 320 of file matrix.hpp.
References mmx::cols().
{ j++; if (j >= cols(m)) { j=0; i++; } }
| C current | ( | ) | [inline, protected] |
Definition at line 321 of file matrix.hpp.
{return m (i, j); }
| bool is_busy | ( | ) | [inline, protected] |