view examples/myfunc.c @ 17295:011e5d67baf1

interpft.m: Widen tolerance on tests to allow for FFT error * scripts/general/interpft.m: Widen tolerance on tests to allow for error in FFT routines, for example when not linking with FFTW.
author Mike Miller <mtmiller@ieee.org>
date Tue, 20 Aug 2013 09:46:17 -0400
parents be41c30bcb44
children
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; 
}