Mercurial > hg > octave-lyh
view examples/firstmexdemo.c @ 14454:2232931f2494
Return regexp output when input is a cellstr and there is no return variable assignment.
regexp.cc (regexp, regexpi): Return output when nargout == 0.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Sun, 11 Mar 2012 14:14:01 -0700 |
parents | 6cb30a539481 |
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; }