view examples/mycell.c @ 6801:beb698a16916

Added tag ss-2-9-13 for changeset afbd31bb7b4e
author jwe@segfault.lan
date Fri, 01 Feb 2008 23:17:15 -0500
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));
}