Mercurial > hg > octave-nkf
view examples/code/myhello.c @ 20829:9cef0a1207e4 @
cell2mat: add tests for cells of cells and char arrays
author | Carnë Draug <carandraug@octave.org> |
---|---|
date | Tue, 13 Oct 2015 11:40:05 +0100 |
parents | c8240a60dd01 |
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); }