Mercurial > hg > octave-thorsten
view examples/mycell.c @ 6997:6d0d8d621532
[project @ 2007-10-10 16:41:16 by jwe]
author | jwe |
---|---|
date | Wed, 10 Oct 2007 16:41:16 +0000 |
parents | 2aad75fcc93a |
children | 4270ded9ddc6 |
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)); }