mexCallMATLAB (C)
Call MATLAB function, user-defined function, or MEX function
C Syntax
#include "mex.h" int mexCallMATLAB(int nlhs, mxArray *plhs[], int nrhs, mxArray *prhs[], const char *functionName);
Description
Note
To write MEX functions using modern C++ features and the MATLAB Data API for C++, see Write C++ Functions Callable from MATLAB (MEX Files).
Call mexCallMATLAB to invoke internal MATLAB® numeric functions, MATLAB operators, user-defined functions, or other MEX functions.
Both mexCallMATLAB and mexEvalString execute
MATLAB commands. Use mexCallMATLAB for returning results
(left side arguments) back to the MEX function. The mexEvalString function
does not return values to the MEX function.
Input Arguments
Output Arguments
Error Handling
If functionName detects an error, MATLAB terminates the MEX function and returns control to the MATLAB prompt. To trap errors, use the mexCallMATLABWithTrap
function.
Limitations
Avoid using the
mexCallMATLABfunction in Simulink® S-functions. If you do, do not store the resultingplhsmxArraypointers in any S-function block state that persists after the MEX function finishes. Outputs ofmexCallMATLABhave temporary scope and are automatically destroyed at the end of the MEX function call.It is possible to generate an object of type
mxUNKNOWN_CLASSusingmexCallMATLAB. For example, this function returns two variables but only assigns one of them a value.function [a,b] = foo(c) a = 2*c;
If you then call
foousingmexCallMATLAB, the unassigned output variable is now typemxUNKNOWN_CLASS.
Examples
To open an example, type:
edit([fullfile(matlabroot,"extern","examples","mex","filename")]);
where filename is:
To open an example, type:
edit([fullfile(matlabroot,"extern","examples","refbook","filename")]);
where filename is:
To open an example, type:
edit([fullfile(matlabroot,"extern","examples","mx","filename")]);
where filename is:
Tips
MATLAB allocates dynamic memory to store the arrays in
plhsformexCallMATLAB. MATLAB automatically deallocates the dynamic memory when you exit the MEX function. However, if heap space is at a premium, callmxDestroyArraywhen you are finished with the arrays inplhs.
Version History
Introduced before R2006a
See Also
feval | mexFunction | mexCallMATLABWithTrap | mexEvalString | mxDestroyArray