|
OSFI-C
3.10.1
OpenSF Integration Library
|
Matrix of string 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 string values, with dimension sizes and contents.
| char* osfi_matString_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).