Mercurial > hg > octave-nkf
view test/nest/varg_nest.m @ 15038:ab18578c2ade
doc: Update docstrings for built-in functions to not use "Loadable Function" as type.
* data.cc, debug.cc, help.cc, ov-oncleanup.cc, sparse.cc: Update docstrings
for built-in functions to use "Built-in Function" as type.
author | Rik <rik@octave.org> |
---|---|
date | Fri, 27 Jul 2012 14:37:37 -0700 |
parents | be18c9e359bf |
children |
line wrap: on
line source
function x = varg_nest (varargin) x = abs (f (-5)) + g; function x = f (varargin) x = abs (varargin{1}); endfunction function x = g x = abs (varargin{1}); endfunction endfunction