Mercurial > hg > octave-nkf
view test/test_recursion.m @ 6081:cd98c1e18d48
[project @ 2006-10-25 03:36:45 by jwe]
author | jwe |
---|---|
date | Wed, 25 Oct 2006 03:36:46 +0000 |
parents | 1ad66ea35fe5 |
children | 93c65f2a5668 |
line wrap: on
line source
%% Automatically generated from DejaGNU files %% test/octave.test/recursion/recursion-1.m %!function y = f (x) %! if (x == 1) %! y = x; %! return; %! else %! y = x * f (x-1); %! endif %!test %! assert(f (5),120); %% test/octave.test/recursion/recursion-2.m %!function y = f (x) %! if (x == 1) %! y = x; %! return; %! else %! y = f (x-1) * x; %! endif %!test %! assert(f (5),120);