1
0
Fork 0

Clean up whitespace

This commit is contained in:
neingeist 2014-10-02 22:32:37 +02:00
parent 8559c243c5
commit e38033c00d
2 changed files with 3 additions and 13 deletions

View file

@ -6,7 +6,7 @@ function J = computeCostMulti(X, y, theta)
% Initialize some useful values
m = length(y); % number of training examples
% You need to return the following variables correctly
% You need to return the following variables correctly
J = 0;
% ====================== YOUR CODE HERE ======================
@ -15,8 +15,6 @@ J = 0;
% =========================================================================
end

View file

@ -11,7 +11,7 @@ for iter = 1:num_iters
% ====================== YOUR CODE HERE ======================
% Instructions: Perform a single gradient step on the parameter vector
% theta.
% theta.
%
% Hint: While debugging, it can be useful to print out the values
% of the cost function (computeCostMulti) and gradient here.
@ -19,17 +19,9 @@ for iter = 1:num_iters
% ============================================================
% Save the cost J in every iteration
% Save the cost J in every iteration
J_history(iter) = computeCostMulti(X, y, theta);
end