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 件のコメント
darova
darova 2020 年 3 月 22 日
I don't understand
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 Center および File ExchangeLine Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by