view examples/myfeval.c @ 17157:73a3c1580974

Correctly identify PNG image types (bug #32986, bug #36820 and bug #37689) * __magick_read_.cc (read_images): check original color type from PNG image attribute because GraphicsMagick changes it for optimization.
author Carnë Draug <carandraug@octave.org>
date Fri, 02 Aug 2013 19:05:42 +0100
parents be41c30bcb44
children
line wrap: on
line source

#include "mex.h"

void
mexFunction (int nlhs, mxArray* plhs[],
             int nrhs, const mxArray* prhs[])
{
  char *str;

  mexPrintf ("Hello, World!\n");

  mexPrintf ("I have %d inputs and %d outputs\n", nrhs, nlhs);

  if (nrhs < 1 || ! mxIsString (prhs[0])) 
    mexErrMsgTxt ("ARG1 must be a function name");

  str = mxArrayToString (prhs[0]);

  mexPrintf ("I'm going to call the function %s\n", str);

  mexCallMATLAB (nlhs, plhs, nrhs-1, (mxArray*)prhs+1, str);

  mxFree (str);
}