Mercurial > hg > octave-nkf
annotate 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 |
rev | line source |
---|---|
5864 | 1 #include "mex.h" |
2 | |
3 void | |
16867
be41c30bcb44
Re-write documentation and all examples of dynamically linked functions.
Rik <rik@octave.org>
parents:
9932
diff
changeset
|
4 mexFunction (int nlhs, mxArray* plhs[], |
be41c30bcb44
Re-write documentation and all examples of dynamically linked functions.
Rik <rik@octave.org>
parents:
9932
diff
changeset
|
5 int nrhs, const mxArray* prhs[]) |
5864 | 6 { |
7 char *str; | |
8 | |
18435
d1e16bdb3958
myfeval.c: Fix segfault in mex example code.
Rik <rik@octave.org>
parents:
17791
diff
changeset
|
9 mexPrintf ("Starting file myfeval.mex\n"); |
5864 | 10 |
16867
be41c30bcb44
Re-write documentation and all examples of dynamically linked functions.
Rik <rik@octave.org>
parents:
9932
diff
changeset
|
11 mexPrintf ("I have %d inputs and %d outputs\n", nrhs, nlhs); |
5864 | 12 |
17791
224e76250443
Use GNU style coding conventions for code in examples/
Rik <rik@octave.org>
parents:
16867
diff
changeset
|
13 if (nrhs < 1 || ! mxIsString (prhs[0])) |
16867
be41c30bcb44
Re-write documentation and all examples of dynamically linked functions.
Rik <rik@octave.org>
parents:
9932
diff
changeset
|
14 mexErrMsgTxt ("ARG1 must be a function name"); |
5864 | 15 |
16 str = mxArrayToString (prhs[0]); | |
17 | |
7081 | 18 mexPrintf ("I'm going to call the function %s\n", str); |
5864 | 19 |
18435
d1e16bdb3958
myfeval.c: Fix segfault in mex example code.
Rik <rik@octave.org>
parents:
17791
diff
changeset
|
20 if (nlhs == 0) |
d1e16bdb3958
myfeval.c: Fix segfault in mex example code.
Rik <rik@octave.org>
parents:
17791
diff
changeset
|
21 nlhs = 1; // Octave's automatic 'ans' variable |
d1e16bdb3958
myfeval.c: Fix segfault in mex example code.
Rik <rik@octave.org>
parents:
17791
diff
changeset
|
22 |
d1e16bdb3958
myfeval.c: Fix segfault in mex example code.
Rik <rik@octave.org>
parents:
17791
diff
changeset
|
23 /* Cast prhs just to get rid of 'const' qualifier and stop compile warning */ |
d1e16bdb3958
myfeval.c: Fix segfault in mex example code.
Rik <rik@octave.org>
parents:
17791
diff
changeset
|
24 mexCallMATLAB (nlhs, plhs, nrhs-1, (mxArray**)prhs+1, str); |
5864 | 25 |
26 mxFree (str); | |
27 } |