Struct PntosMatrix
Defined in File common.h
Struct Documentation
-
struct PntosMatrix
A 2D container (row, col) full of doubles.
Invariants:
The length of data must be
sizeof(double)*rows*cols
Public Members
-
PntosManagedMemory *memory
-
size_t rows
The number of rows in this matrix. For a MxN matrix,
rowsis M.
-
size_t cols
The number of columns in this matrix. For a MxN matrix,
colsis N.
-
double *data
A set of
rowsxcolsdoubles. Data is stored in row major form.