Mercurial > hg > octave-thorsten
view examples/myhello.c @ 9577:b03062e16c6f
copyirght & FIXME in aclocal.m4
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Thu, 27 Aug 2009 08:38:56 +0200 |
parents | 4295d634797d |
children |
line wrap: on
line source
#include "mex.h" void mexFunction (int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]) { mxArray *v = mxCreateDoubleMatrix (1, 1, mxREAL); double *data = mxGetPr (v); *data = 1.23456789; plhs[0] = v; }