MATLAB Application Program Interface | Search  Help Desk |
mexGetFull (Obsolete) | See Also |
-V4
option of the mex
script.
In MATLAB 5 MEX-files you should call
mexGetArray(array_ptr, "caller"); name = mxGetName(array_ptr); m = mxGetM(array_ptr); n = mxGetN(array_ptr); pr = mxGetPr(array_ptr); pi = mxGetPi(array_ptr);instead of
mexGetFull(name, m, n, pr, pi);
mexGetArray
, mxGetName
, mxGetPr
, mxGetPi