Mercurial > hg > octave-max
view examples/helloworld.cc @ 14312:1734c3a48f31 stable
disable panning for logscale axes
* graphics.cc (axes::properties::translate_view): Disable panning for
logscale axes.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 02 Feb 2012 11:34:11 -0500 |
parents | db1f49eaba6b |
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 (); }