view examples/myhello.c @ 18559:1a82df63d65e draft

Fully int16 type support *** Fix int16 type comments
author LYH <lyh.kernel@gmail.com>
date Fri, 27 Sep 2013 04:18:59 +0800
parents be41c30bcb44
children
line wrap: on
line source

#include "mex.h"

void
mexFunction (int nlhs, mxArray *plhs[],
             int nrhs, const mxArray *prhs[])
{
  mexPrintf ("Hello, World!\n");

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