The homework review for Andrew Ng's ML course

Published: by

Record the mistakes that I have made and the ideas that I came up with

Week2 Linear Regression

function J = computeCost(X, y, theta)

function [theta, J_history] = gradientDescent(X, y, theta, alpha, num_iters)

homework week2