User`s guide

bool IsNumeric() const
Purpose Return true if underlying array is numeric
C++
Syntax
#include "mclcppclass. h"
mwArray a(2, 2, mxDOUBLE_CLASS);
bool b = a.IsNumeric(); // Should return true.
Arguments None
Return
Value
Boolean indicating if the array is numeric.
Description Use this method to determine if an array is numeric.
C-60