Moving course1 to course1 subdir.
This commit is contained in:
@@ -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 ----------------------
|
||||
|
||||
|
||||
theta = pinv(X'*X)*X'*y;
|
||||
|
||||
% -------------------------------------------------------------
|
||||
|
||||
|
||||
% ============================================================
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user