Determine whether mxArray represents data as unsigned 64-bit integers
#include "matrix.h" bool mxIsUint64(const mxArray *pm);
mxIsUint64
returns logical 1
(true
) if the mxArray
stores its data as 64-bit
unsigned integers. Otherwise, it returns logical 0
(false
).
In C, calling mxIsUint64
is equivalent to calling:
mxGetClassID(pm) == mxUINT64_CLASS