Element
|
Description
|
array
|
Pointer to the COMPLEXARRAY structure that is to be filled with the information about an array.
The COMPLEXARRAY structure has the following form:
typedef struct tagCOMPLEXARRAY {
unsigned int rows; unsigned int cols; double **hReal; double **hImag; } COMPLEXARRAY; |