MATLAB Application Program Interface Reference | Help Desk |
mexGetFull (Obsolete)
This function is obsolete; it should not appear in a MATLAB 5 program. To use this function, use the-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