OSFI-C  3.10.0
OpenSF Integration Library
osfi_matDouble_t Struct Reference

Matrix of floating point 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.
 
double values []
 Data in row-major order, up to rows*cols-1. More...
 

Detailed Description

Matrix of floating point values, with dimension sizes and contents.

Examples
ConFM.c.

Field Documentation

◆ values

double osfi_matDouble_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).

Examples
ConFM.c.

The documentation for this struct was generated from the following file: