Main Content

mxIsUint64 (C)

Determine whether mxArray represents data as unsigned 64-bit integers

C Syntax

#include "matrix.h"
bool mxIsUint64(const mxArray *pm);

Description

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

Input Arguments

expand all

Pointer to an mxArray array, specified as const mxArray*.

Version History

Introduced before R2006a