True if mxArray
is numeric
C Syntax
#include "matrix.h"
bool mxIsNumeric(const mxArray *array_ptr);
Arguments
array_ptr
Pointer to an mxArray
.
Returns
True
if the array's storage type is
Returns False
if the array's storage type is
Description
Call mxIsNumeric
to determine if the specified array contains numeric data. If the specified array is a cell, string, or a structure, then mxIsNumeric
returns False
. Otherwise, mxIsNumeric
returns True
.
Call mxGetClassID
to determine the exact storage type.
See Also
mxGetClassID
[ Previous | Help Desk | Next ]