September 2017 Update

This commit is contained in:
Ingy döt Net 2017-09-23 10:01:46 +02:00
parent bba7bfd280
commit ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions

View file

@ -1,7 +1,6 @@
function floyds_triangle(n)
width = 1+floor(log10(nr*(nr+1)/2));
for k=1:n,
fprintf(stdout,' %*i',[width(ones(1,k));k*(k-1)/2+1:k*(k+1)/2]);
fprintf(stdout,'\n');
end;
s = 1;
for k = 1 : n
disp(s : s + k - 1)
s = s + k;
end