| External Interfaces/API Reference | ![]() |
True if mxArray represents its data as unsigned 32-bit integers
C Syntax
#include "matrix.h" bool mxIsUint32(const mxArray *array_ptr);
Arguments
array_ptr
Pointer to an mxArray.
Returns
true if the mxArray stores its data as unsigned 32-bit integers, and false otherwise.
Description
Use mxIsUint32 to determine whether or not the specified mxArray represents its real and imaginary data as 32-bit unsigned integers.
Calling mxIsUint32 is equivalent to calling
mxGetClassID(array_ptr) == mxUINT32_CLASS
See Also
mxIsClass, mxGetClassID, mxIsUint16, mxIsUint8, mxIsInt32, mxIsInt16, mxIsInt8
| mxIsUint16 | mxMalloc | ![]() |