Mercurial > hg > octave-nkf
view examples/code/myfeval.c @ 20387:4951982f8a2c stable
intro.txi: Improve documentation in introductory chapter.
* intro.txi: Use 'diary' instead of 'cd' as an example of a command.
Format sample function docstring to match modern usage.
Improve phrasing of a few sentences.
author | Rik <rik@octave.org> |
---|---|
date | Mon, 11 May 2015 22:08:26 -0700 |
parents | c8240a60dd01 |
children | 5c42ff6f0eb1 |
line wrap: on
line source
#include "mex.h" void mexFunction (int nlhs, mxArray* plhs[], int nrhs, const mxArray* prhs[]) { char *str; mexPrintf ("Starting file myfeval.mex\n"); mexPrintf ("I have %d inputs and %d outputs\n", nrhs, nlhs); if (nrhs < 1 || ! mxIsString (prhs[0])) mexErrMsgTxt ("ARG1 must be a function name"); str = mxArrayToString (prhs[0]); mexPrintf ("I'm going to call the function %s\n", str); if (nlhs == 0) nlhs = 1; // Octave's automatic 'ans' variable /* Cast prhs just to get rid of 'const' qualifier and stop compile warning */ mexCallMATLAB (nlhs, plhs, nrhs-1, (mxArray**)prhs+1, str); mxFree (str); }