Mercurial > hg > octave-nkf
view examples/myhello.c @ 17837:73b239db1594
Make known conv failures xtests.
* libinterp/corefcn/conv2.cc: Add note about why 3 conv tests are failing
to meet test tolerance. Make these 3 tests xtests.
author | Rik <rik@octave.org> |
---|---|
date | Sat, 02 Nov 2013 21:59:33 -0700 |
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); }