it does not count this as right

1 visualizzazione (ultimi 30 giorni)
Luca Botti
Luca Botti il 22 Mar 2020
Risposto: Guillaume il 22 Mar 2020
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 Commenti
darova
darova il 22 Mar 2020
I don't understand
Luca Botti
Luca Botti il 22 Mar 2020
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 :)

Accedi per commentare.

Risposte (1)

Guillaume
Guillaume il 22 Mar 2020
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.

Categorie

Scopri di più su Line Plots in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by