The Original CHomP Software
|
The class that represents a single row of the matrix. More...
#include <flatmatr.h>
Public Member Functions | |
row (int _offset, element *_v) | |
The constructor of a row of the matrix. More... | |
element & | operator[] (int j) |
Returns a reference to the element at the given position. More... | |
Protected Attributes | |
int | offset |
The offset in the vector of all the entries of the matrix. More... | |
element * | v |
A reference to the vector that stores all the entries of the matrix. More... | |
The class that represents a single row of the matrix.
Definition at line 88 of file flatmatr.h.
|
inline |
The constructor of a row of the matrix.
Definition at line 92 of file flatmatr.h.
|
inline |
Returns a reference to the element at the given position.
Definition at line 96 of file flatmatr.h.
References chomp::homology::flatMatrix< element >::row::offset, and chomp::homology::flatMatrix< element >::row::v.
|
protected |
The offset in the vector of all the entries of the matrix.
Definition at line 101 of file flatmatr.h.
Referenced by chomp::homology::flatMatrix< element >::row::operator[]().
|
protected |
A reference to the vector that stores all the entries of the matrix.
Definition at line 105 of file flatmatr.h.
Referenced by chomp::homology::flatMatrix< element >::row::operator[]().