码迷,mamicode.com
首页 > 其他好文 > 详细

[ML] CostFunction [Octave code]

时间:2017-03-08 23:59:04      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:mat   com   compute   put   matlab   ini   highlight   number   ecos   

function J = computeCostMulti(X, y, theta)

m = length(y); % number of training examples

J = 0;

for i = 1:m
	J = J + (X(i,:) * theta - y(i,1)) ^ 2
end;

J = J / (2 * m);

end

  

[ML] CostFunction [Octave code]

标签:mat   com   compute   put   matlab   ini   highlight   number   ecos   

原文地址:http://www.cnblogs.com/KennyRom/p/6523381.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!