OSFI-C
3.10.0
OpenSF Integration Library
|
Matrix of file/folder values, with dimension sizes and contents. More...
#include <OSFIC.h>
Data Fields | |
int | numel |
Total number of elements (rows x cols), never negative. | |
int | rows |
Number of rows, never negative. | |
int | cols |
Number of columns, never negative. | |
char * | values [] |
Data in row-major order, up to rows*cols-1. More... | |
Matrix of file/folder values, with dimension sizes and contents.
Different from osfi_matString_t for the generic getters to work, otherwise equivalent.
char* osfi_matFile_t::values[] |
Data in row-major order, up to rows*cols-1.
The item at row i and column j (both 0-indexed) is stored in values[i*cols + j]
. In common mathematical notation (1-indexed), values[i*cols + j] = M(i+1,j+1)
.