Cannot identify error in line of code
Mostrar comentarios más antiguos
Hi everyone,
I'm trying to figure out why this line of code is ending up in error whenever I run the code. Is there something small I'm missing maybe? The error is in line 10 by the way.
Thank you!
EDIT: This is the error message:
">> Cnvalues
Index exceeds matrix dimensions.
Error in Cnvalues (line 15)
Cn12 = ((-CpAOA12(i+1)-CpAOA12(i))./2).*((xvec(i+1))-(xvec(i)));"

1 comentario
Stephen23
el 17 de Sept. de 2017
@Stenila Simon: please edit your question and do both of these things:
- Show the complete error. This means show us all of the red text. Do NOT use a screenshot: screenshots are useless for us.
- Show or upload your code. Do NOT use a screenshot: screenshots are useless for us.
Respuesta aceptada
Más respuestas (1)
Walter Roberson
el 17 de Sept. de 2017
1 voto
Your initialization of sumCn4 should be before the loop.
Your maximum value for i should be at most min( length(cpAOA4) - 1, xvec - 1) so if those are length 54 then you should have "for i = 1 : 53"
Categorías
Más información sobre Logical 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!