Fzero Error, Unbalanced or unexpected parenthesis or bracket
Mostrar comentarios más antiguos
I'm currently trying work with the fzero built in function, but I am constantly being given the error of Unbalanced or unexpected parenthesis or bracket. Below is my code.
fun=@cos;
x0 = [1,2];
x = fzero(fun, x0)
I understand what the error is saying, but I don't see why it's displaying it.
2 comentarios
Walter Roberson
el 16 de Jul. de 2017
That code works when I copy and paste it.
Perhaps the error is on some earlier line?
Stephen23
el 17 de Jul. de 2017
@Zachary Cutter: please edit your question and show us the complete error message. This means all of the red text.
Respuestas (1)
Steven Lord
el 17 de Jul. de 2017
0 votos
Copy all of your code into the MATLAB Editor. In the gutter on the right side of the Editor you should see a red square at the top and a red line somewhere below that. Click on the red line and it should take you to the line of code where MATLAB believes you have an unbalanced or unexpected parenthesis or bracket.
Categorías
Más información sobre Function Creation en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!