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

Octave-CostFunction

时间:2019-12-13 20:03:46      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:ict   end   function   pre   style   err   fun   结果   bsp   

假设 X= [1 1;1 2;1 3]

y = [1;2;3]

theta = [0;0]

costFunction J :

1 function J = costFunction(X,y,theta)
2   m = size(X,1);
3   predictions = X*theta;
4   Errors = (predictions - y).^2;
5   J = 1/(2*m)*sum(Errors);
6 endfunction

J = costFunction(X,y,theta)    :得到结果为     杲湩??J =  2.3333

Octave-CostFunction

标签:ict   end   function   pre   style   err   fun   结果   bsp   

原文地址:https://www.cnblogs.com/liuxjie/p/12036881.html

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