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