view examples/code/funcdemo.cc @ 31195:776446acdc7b

pkg.m: Show URL of source tarball(s) in verbose mode. * scripts/pkg/pkg.m: If downloading source tarballs with the "-forge" option, show the URL where they are downloaded from if verbose mode is on.
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 19 Aug 2022 08:54:05 +0200
parents d7e4d9b383ff
children
line wrap: on
line source

#include <octave/oct.h>
#include <octave/parse.h>

DEFMETHOD_DLD (funcdemo, interp, args, nargout, "Function Demo")
{
  int nargin = args.length ();

  if (nargin < 2)
    print_usage ();

  octave_value_list newargs;

  for (octave_idx_type i = nargin - 1; i > 0; i--)
    newargs(i-1) = args(i);

  octave_value_list retval;

  if (args(0).is_function_handle () || args(0).is_inline_function ()
      || args(0).is_string ())
    retval = interp.feval (args(0), newargs, nargout);
  else
    error ("funcdemo: INPUT must be string, inline, or function handle");

  return retval;
}