Public Member Functions | |
| vetMatrix () | |
| vetMatrix (unsigned int colCount, unsigned int rowCount) | |
| vetMatrix (const char *filename) | |
| vetMatrix (unsigned int colCount, unsigned int rowCount, T *data_ptr) | |
| ~vetMatrix () | |
| void | setDim (unsigned int colCount, unsigned int rowCount) |
| unsigned int | getRowsCount () |
| unsigned int | getColumnsCount () |
| unsigned int | getItemsCount () |
| T | getItemsSum () |
| T * | dump_data () |
| T * | dump_dataSum () |
| VETRESULT | setValue (unsigned int x, unsigned int y, T &value) |
| T & | getValue (unsigned int x, unsigned int y) |
| T & | getValueMax () |
| T & | getValueMin () |
| void | clearWith (T &value) |
| VETRESULT | saveToFile (const char *filename) |
| VETRESULT | loadFromFile (const char *filename) |
Protected Attributes | |
| unsigned int | rows |
| unsigned int | columns |
| T * | data |
| T * | dataSum |
Definition at line 38 of file vetMatrix.h.
1.4.4