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-1.m
next >
Wrap
Text File
|
1996-09-28
|
113b
|
11 lines
1;
function y = f (x)
if (x == 1)
y = x;
return;
else
y = x * f (x-1);
endif
endfunction
f (5)