df: r6 octave

This commit is contained in:
2025-12-19 19:39:34 +03:00
parent 236c72fa1f
commit a959c67638
14 changed files with 981 additions and 0 deletions

View File

@ -0,0 +1,15 @@
function A = warmUpExercise()
% Instructions: Return the 5x5 identity matrix
% In octave, we return values by defining which variables
% represent the return values (at the top of the file)
% and then set them accordingly.
A = zeros(5, 5);
for i=1:5
A(i, i) = 1;
end
% ===========================================
end