Determine whether mxArray represents data as signed 32-bit integers
#include "fintrf.h" integer*4 mxIsInt32(pm) mwPointer pm
mxIsInt32
returns 1
if the
mxArray
stores its data as 32-bit integers. Otherwise, it returns
0
.
In Fortran, calling mxIsInt32
is equivalent to calling:
mxGetClassName(pm) == 'int32'