view examples/mycell.c @ 6910:710aea220a2c

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