Mercurial > hg > octave-lyh
view examples/myhello.c @ 17518:29242e3f2644
Fix int8 type sub
author | LYH <lyh.kernel@gmail.com> |
---|---|
date | Fri, 27 Sep 2013 02:58:43 +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); }