Mercurial > hg > octave-nkf
view examples/code/myfunc.c @ 20829:9cef0a1207e4 @
cell2mat: add tests for cells of cells and char arrays
author | Carnë Draug <carandraug@octave.org> |
---|---|
date | Tue, 13 Oct 2015 11:40:05 +0100 |
parents | c8240a60dd01 |
children |
line wrap: on
line source
#include "mex.h" void mexFunction (int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]) { const char *nm; nm = mexFunctionName (); mexPrintf ("You called function: %s\n", nm); if (strcmp (nm, "myfunc") == 0) mexPrintf ("This is the principal function\n", nm); return; }