#include <Matrix.h>
Public Member Functions | |
| int | getm () const |
| int | getn () const |
| float * | getx () const |
| Matrix (const Matrix &a) | |
| Matrix (int m, int n, bool I=false) | |
| Matrix () | |
| Matrix & | operator= (const Matrix &a) |
| float * | operator[] (int i) const |
| Matrix | transp () |
| ~Matrix () | |
Public Attributes | |
| int | M |
| int | N |
| float * | X |
Definition at line 8 of file Matrix.h.