view examples/myfunc.c @ 17026:be52288f827b

Tweak some plotting demos for messages and spelling. * scripts/plot/axis.m: Correct typo "p" -> "pi"; * scripts/plot/fplot.m: Change sinc function definition to put constant "pi" first. * scripts/plot/stemleaf.m: Fix failing demo missing caption argument.
author Rik <rik@octave.org>
date Sat, 20 Jul 2013 18:46:38 -0700
parents be41c30bcb44
children 224e76250443
line wrap: on
line source

#include "mex.h"

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

  nm = mexFunctionName ();
  mexPrintf ("You called function: %s\n", nm);
  if (strcmp (nm, "myfunc") == 0)
    mexPrintf ("This is the principal function\n", nm);

  return; 
}