C Math Library Reference | ![]() ![]() |
Returns a pointer to the routine to be executed by mlfFeval()
.
C Prototype
mlxFunctionPtr mlfFevalLookup(mxArray *fcn);
Arguments
Character array specifying name of the routine to be executed.
Description
To specify the routine executed by the mlfFeval()
routine, you must pass a pointer to the routine as an argument. The mlfFevalLookup()
routine returns a pointer to the routine named as its only argument.
Example
This example shows how you nest a call to mlfFevalLookup()
as an argument to mlfFeval()
.
mlfFeval(mlfVarargout(y1,y2,...,NULL), mlfFevalLookup(mxCreateString("foo")), x1, x2,...,NULL);
![]() | mlfEnterNewContext | mlfFevalTableSetup | ![]() |