The Matrix2D struct represents a variable size 2D matrix. More...
#include <legacymatrix2d.h>
Public Attributes | |
| double * | data |
| Pointer to the data. | |
| int * | size |
| Pointer to the size array. | |
| int | allocatedSize |
| Allocated size. | |
| int | numDimensions |
| Number of dimensions (usually 2). | |
| bool | canFreeData |
The Matrix2D struct represents a variable size 2D matrix.
Use the Matrix2D_... functions to operate on this variable sized matrix. This type of data can be used to get/set a program as a list. This is also useful for backwards compatibility functions related to RoKiSim.
Definition at line 54 of file legacymatrix2d.h.
| int allocatedSize |
Allocated size.
Definition at line 69 of file legacymatrix2d.h.
| bool canFreeData |
Definition at line 76 of file legacymatrix2d.h.
| double* data |
Pointer to the data.
Definition at line 59 of file legacymatrix2d.h.
| int numDimensions |
Number of dimensions (usually 2).
Definition at line 74 of file legacymatrix2d.h.
| int* size |
Pointer to the size array.
Definition at line 64 of file legacymatrix2d.h.