home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / test / octave.test / recursion / recursion-2.m < prev    next >
Text File  |  1996-09-28  |  113b  |  11 lines

  1. 1;
  2. function y = f (x)
  3.   if (x == 1)
  4.     y = x;
  5.     return;
  6.   else
  7.     y = f (x-1) * x;
  8.   endif
  9. endfunction
  10. f (5)
  11.