Main Content

mexFunctionName (C and Fortran)

Name of current MEX function

C Syntax

#include "mex.h" const char *mexFunctionName(void);

Fortran Syntax

#include "fintrf.h" character*(*) mexFunctionName()

Description

mexFunctionNamereturns the name of the current MEX function.

Output Arguments

expand all

Current MEX function name, returned asconst char*in C orcharacter*(*)in Fortran.

Examples

See these examples inmatlabroot/extern/examples/mex:

Introduced before R2006a