Flag specifying whether array has imaginary components
typedef enum mxComplexity {mxREAL=0, mxCOMPLEX};
mxREAL
Identifies an mxArray
with no imaginary
components.
mxCOMPLEX
Identifies an mxArray
with imaginary components.
Various Matrix Library functions require an mxComplexity
argument.
You can set an mxComplex
argument to either mxREAL
or mxCOMPLEX
.