| MATLAB C Math Library | Search  Help Desk |
| mlfFevalLookup | Examples |
Returns a pointer to the routine to be executed by mlfFeval().
C Prototype
mlxFunctionPtr mlfFevalLookup(mxArray *fcn);
Arguments
mxArray *fcn Character array specifying name of the routine to be executed.Description
To specify the routine executed by themlfFeval() 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 tomlfFevalLookup() as an argument to mlfFeval().
mlfFeval(mlfVarargout(y1,y2,...,NULL),
mlfFevalLookup(mxCreateString("foo")),
x1, x2,...,NULL);