view examples/mycell.c @ 17294:5ff843d739fc

Add new desktop.m function to Octave (bug #37330). * scripts/miscellaneous/desktop.m: new m-file. * scripts/miscellaneous/module.mk: Add desktop.m to build system. *NEWS: Add desktop to list of new functions for 3.8. Re-organized new features of 3.8.
author Rik <rik@octave.org>
date Tue, 20 Aug 2013 11:31:58 -0700
parents be41c30bcb44
children 224e76250443
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 ("ARG1 must be a cell");

  n = mxGetNumberOfElements (prhs[0]);
  n = (n > nlhs ? nlhs : n);
  
  for (i = 0; i < n; i++)
    plhs[i] = mxDuplicateArray (mxGetCell (prhs[0], i));
}