Skip to content

Instantly share code, notes, and snippets.

@oskar-j
Created March 28, 2015 22:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oskar-j/381691be0c706783bd66 to your computer and use it in GitHub Desktop.
Save oskar-j/381691be0c706783bd66 to your computer and use it in GitHub Desktop.
Cost function [Machine Learning]
function J = computeCost(X, y, theta)
%COMPUTECOST Compute cost for linear regression
% J = COMPUTECOST(X, y, theta) computes the cost of using theta as the
% parameter for linear regression to fit the data points in X and y
% Initialize some useful values
m = length(y); % number of training examples
value = 0;
t = theta.';
for n = 1:m
value = value + ( (t(1) * X(n,1) + t(2) * X(n,2) ) - y(n,1) )^2;
end
% You need to return the following variables correctly
J = 1/(2 * m) * value;
% =========================================================================
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment