For Loop Indexing exceeding array elements

1 visualización (últimos 30 días)
Liam Gillan
Liam Gillan el 4 de Abr. de 2021
Editada: Liam Gillan el 4 de Abr. de 2021
Hi I'm trying to make a loop that runs from k=o to k=300 and use the values for some equations from the previous iteration. I can't get it to run without it saying "Index exceeds the number of array elements (1)."

Respuestas (1)

David Fletcher
David Fletcher el 4 de Abr. de 2021
Editada: David Fletcher el 4 de Abr. de 2021
First run of the loop you are overwriting the z vector with a scaler
if k <= 1
z=5;
mu = 0;
On subsequent runs of the loop you are trying to index the vector that you overwrote with a scaler on the first pass
  1 comentario
David Fletcher
David Fletcher el 4 de Abr. de 2021
Without going through the code in microscopic detail, just as a general observation - you've got an awful lot of zeroes kicking around in those arrays set to zero at the start, so any sort of misindexing is likely to result in multiplication by zero - hence getting an awful lot of nothing at the end

Iniciar sesión para comentar.

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by