Mercurial > hg > octave-lyh
annotate examples/firstmexdemo.c @ 14711:f5c3de9502b2
Fix compilation error on newer compilers
* eigs-base.cc: Remove "static" keyword. Doesn't belong in template
instantiations.
author | Alexander Hansen <alexanderk.hansen@gmail.com> |
---|---|
date | Fri, 01 Jun 2012 13:20:49 -0400 |
parents | 6cb30a539481 |
children |
rev | line source |
---|---|
6577 | 1 #include "mex.h" |
2 | |
3 void | |
7081 | 4 mexFunction (int nlhs, mxArray *plhs[], int nrhs, |
9932
6cb30a539481
untabify files in examples directory
John W. Eaton <jwe@octave.org>
parents:
9053
diff
changeset
|
5 const mxArray *prhs[]) |
6577 | 6 { |
7 mxArray *v = mxCreateDoubleMatrix (1, 1, mxREAL); | |
8 double *data = mxGetPr (v); | |
9 *data = 1.23456789; | |
10 plhs[0] = v; | |
11 } |