Mercurial > hg > octave-nkf
view examples/mycell.c @ 15148:1b2fbc30e4e7
Postfix increment and decrement operations in JIT
* jit-typeinfo.cc (jit_typeinfo::jit_typeinfo): Initialize copy operation.
* jit-typeinfo.h (jit_typeinfo::copy): New function.
* pt-jit.cc (jit_convert::visit_postfix_expression): Implement for ++ and --.
author | Max Brister <max@2bass.com> |
---|---|
date | Fri, 10 Aug 2012 16:41:07 -0500 |
parents | 6cb30a539481 |
children | be41c30bcb44 |
line wrap: on
line source
#include "mex.h" void mexFunction (int nlhs, mxArray* plhs[], int nrhs, const mxArray* prhs[]) { mwSize n; mwIndex i; if (nrhs != 1 || ! mxIsCell (prhs[0])) mexErrMsgTxt ("expects cell"); n = mxGetNumberOfElements (prhs[0]); n = (n > nlhs ? nlhs : n); for (i = 0; i < n; i++) plhs[i] = mxDuplicateArray (mxGetCell (prhs[0], i)); }