Mercurial > hg > octave-nkf
view examples/myfeval.c @ 18804:7485f8a8e431
bicubic.m: Deprecate function for 4.2 release.
* NEWS: Announce deprecation.
* scripts/general/bicubic.m: Deleted.
* scripts/deprecated/bicubic.m: Moved from scripts/general. Added warning
message about function being deprecated.
* scripts/deprecated/module.mk: Add deprecated bicubic.m to build system.
* scripts/general/module.mk: Remove original bicubic.m from build system.
author | Rik <rik@octave.org> |
---|---|
date | Wed, 16 Apr 2014 05:57:06 -0700 |
parents | d1e16bdb3958 |
children |
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); }