Initial commit — Coursera Machine Learning coursework

This commit is contained in:
2026-05-09 03:11:33 +00:00
commit 0055c3c51c
16 changed files with 1245 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
function A = warmUpExercise()
%WARMUPEXERCISE Example function in octave
% A = WARMUPEXERCISE() is an example function that returns the 5x5 identity matrix
A = [];
% ============= YOUR CODE HERE ==============
% 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.
% ===========================================
end