Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Andrew Ng Stanford Coursera/Week 02/ex1/ex1_multi.m
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
% ====================== YOUR CODE HERE ======================
% Recall that the first column of X is all-ones. Thus, it does
% not need to be normalized.
price = sum(X*theta); % You should change this
price = [1 1650 3] * theta; % You should change this


% ============================================================
Expand Down Expand Up @@ -149,7 +149,7 @@

% Estimate the price of a 1650 sq-ft, 3 br house
% ====================== YOUR CODE HERE ======================
price = sum(X*theta); % You should change this
price = [1 1650 3] * theta; % You should change this


% ============================================================
Expand Down