September 2017 Update
This commit is contained in:
parent
bba7bfd280
commit
ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue