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
+23
View File
@@ -0,0 +1,23 @@
function [theta] = normalEqn(X, y)
%NORMALEQN Computes the closed-form solution to linear regression
% NORMALEQN(X,y) computes the closed-form solution to linear
% regression using the normal equations.
theta = zeros(size(X, 2), 1);
% ====================== YOUR CODE HERE ======================
% Instructions: Complete the code to compute the closed form solution
% to linear regression and put the result in theta.
%
% ---------------------- Sample Solution ----------------------
% -------------------------------------------------------------
% ============================================================
end