| MATLAB Application Program Interface | Search  Help Desk |
| mxGetImagData | Examples See Also |
Get pointer to imaginary data of an mxArray
C Syntax
#include "matrix.h" void *mxGetImagData(const mxArray *array_ptr);
Arguments
array_ptrmxArray.
Description
Similar tomxGetPi, except it returns a void *. Use mxGetImagData on numeric arrays with contents other than double.
Example
Seemxisfinite.c in the mx subdirectory of the examples directory.
See Also
mxGetPi