Mercurial > hg > octave-nkf
view examples/helloworld.cc @ 19076:534511deb10e stable
Use %!testif HAVE_CHOLMOD for sparse chol test added in cset 161b11e7da2d
* chol.cc: Use %!testif HAVE_CHOLMOD for chol %!test on sparse data that
was added in cset 161b11e7da2d.
author | Mike Miller <mtmiller@ieee.org> |
---|---|
date | Tue, 01 Jul 2014 21:55:15 -0400 |
parents | 224e76250443 |
children |
line wrap: on
line source
#include <octave/oct.h> DEFUN_DLD (helloworld, args, nargout, "Hello World Help String") { int nargin = args.length (); octave_stdout << "Hello World has " << nargin << " input arguments and " << nargout << " output arguments.\n"; return octave_value_list (); }