home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-base.tgz / octave-1.1.1p1-base.tar / fsf / octave / test / octave.test / args / args-9.m < prev    next >
Text File  |  1995-01-15  |  136b  |  6 lines

  1. 1;
  2. function [x, y, z] = f (a, b, c, d, e)
  3.   printf ("nargin: %d, nargout: %d\n", nargin, nargout);
  4. endfunction
  5. [s, t] = f (1, 2, 3, 4);
  6.