it does not count this as right

1 次查看(过去 30 天)
Luca Botti
Luca Botti 2020-3-22
回答: Guillaume 2020-3-22
I am submitting this solution to the problem compustCost. it produces the right answer (32.07), however when I submit the this code, the submsion does not count as right, fo you have any idea why?
  2 个评论
Luca Botti
Luca Botti 2020-3-22
ok I am afraid I am going to say some kind of crap, I just started to get in to this kind of language. I am a real newbe.
However I defined theta as a 2 row matrix [0;0] since the homework is asking me to find J for these value example values of theta.
what do you find odd? I probably I have done something wrong :)

请先登录,再进行评论。

回答(1 个)

Guillaume
Guillaume 2020-3-22
First, don't post screenshots of the code. Simply copy/paste the code as text directly in your code (and then click the button). We can't copy text out of screenshots, it's more work for us to help you if we have to retype your code.
What Darova was pointing out is that X, y and theta are inputs of the function. If you redefine them inside the function, you're just throwing away these inputs wich is certainly not what you're meant to do. Since they're inputs you just use them as they are in your function. Note that this is not particular to matlab, it's the same in any programming language.
Secondly, if the X, y and theta inputs can be vectors or matrices, then almost certainly you should be using .* to do element-wise multiplication.
Also, using both X and x as variable names is begging for trouble, there's a great risk that you'll type one when you mean the other. I'd recommend using more meaningfull variable names.

类别

Help CenterFile Exchange 中查找有关 Line Plots 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by