Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
5
Task/Count-in-octal/MATLAB/count-in-octal-1.m
Normal file
5
Task/Count-in-octal/MATLAB/count-in-octal-1.m
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
n = 0;
|
||||
while (1)
|
||||
dec2base(n,8)
|
||||
n = n+1;
|
||||
end;
|
||||
5
Task/Count-in-octal/MATLAB/count-in-octal-2.m
Normal file
5
Task/Count-in-octal/MATLAB/count-in-octal-2.m
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
n = 0;
|
||||
while (1)
|
||||
printf('%o\n',n);
|
||||
n = n+1;
|
||||
end;
|
||||
2
Task/Count-in-octal/MATLAB/count-in-octal-3.m
Normal file
2
Task/Count-in-octal/MATLAB/count-in-octal-3.m
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
seq = 1:100;
|
||||
dec2base(seq,8)
|
||||
1
Task/Count-in-octal/MATLAB/count-in-octal-4.m
Normal file
1
Task/Count-in-octal/MATLAB/count-in-octal-4.m
Normal file
|
|
@ -0,0 +1 @@
|
|||
printf('%o\n',seq);
|
||||
Loading…
Add table
Add a link
Reference in a new issue