Pointer to logical array data
#include "matrix.h" mxLogical *mxGetLogicals(const mxArray *array_ptr);
array_ptr
Pointer to an mxArray
Pointer to the first logical element in the mxArray
. The result is
unspecified if the mxArray
is not a logical array.
Call mxGetLogicals
to access the first logical element in the
mxArray
that array_ptr
points to. Once you
have the starting address, you can access any other element in the
mxArray
.
mxCreateLogicalArray
, mxCreateLogicalMatrix
, mxCreateLogicalScalar
, mxIsLogical
,
mxIsLogicalScalar
, mxIsLogicalScalarTrue