/* * comm_mx_util.h - common mx utilities. * * Copyright 1996-2005 The MathWorks, Inc. * $Revision: 1.1.6.1 $ $Date: 2004/12/10 19:23:05 $ */ #ifndef __COMM_MX_UTIL_H__ #define __COMM_MX_UTIL_H__ #include "mex.h" #include "tmwtypes.h" /* MATLAB complex arrays, from mxArray (concat. real/imag parts) */ struct complexnumber { real_T *re; real_T *im; }; struct complexnumber mxGetComplex(mxArray *s); #endif /* [EOF] */