Integrating: I keep getting 'Array indices must be positive integers or logical values.'
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Patrick Myers
el 24 de Mzo. de 2020
Respondida: Steven Lord
el 24 de Mzo. de 2020
I keep getting the error in the title followed by a bunch of errors in the integration functions itself. I don't know why this keeps happening. What is wrong with it? I have a suspicion it has to do with shadowing so if you test the code and it works please tell me the answer because I don't know how to fix shadowing.
Thanks
Respuesta aceptada
Star Strider
el 24 de Mzo. de 2020
Vectorise the square in the first term (replace ^2 with .^2) and the errors will likely go away.
(My version of MATLAB will not run images of code, only code itself.).
0 comentarios
Más respuestas (1)
Steven Lord
el 24 de Mzo. de 2020
You have y(1+x.^2) inside the second term of Fun. That is an attempt to index into y, but you probably intended it to be y times (1+x.^2).
0 comentarios
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!