libRoadRunner C API
1.0.0
|
Structure for the result type from the simulate calls. More...
#include <rrc_types.h>
Data Fields | |
int | RSize |
int | CSize |
double * | Data |
double * | Weights |
char ** | ColumnHeaders |
Structure for the result type from the simulate calls.
char** ColumnHeaders |
Pointer to an array of column header strings
int CSize |
The number of columns in the data matrix
double* Data |
A pointer to the data stored in the matrix. Access an element using Data[row*CSize + col]
int RSize |
The number of rows in the data matrix
double* Weights |
A pointer to weights stored in the Weights matrix. Access an element using Weights[row*CSize + col]