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