Borrar filtros
Borrar filtros

help with this code. I keep getting error message

1 visualización (últimos 30 días)
Folakemi Omotoye
Folakemi Omotoye el 31 de Jul. de 2018
Editada: Walter Roberson el 1 de Ag. de 2018
when i execute the code below, i get the error message - Array indices must be positive integers or logical values.
n=30
t=0; % initialisation
for t=1:1:n %time intervals
s(t)=sum(v(t-1)); %cumulative sum of the values before current value
s(t)=sum(v(t))+s(t-1); %cumulative sum of values up to current value
g(t)=v(t) - min(v); %current value minus minimum value in the matrix from first iteration to current iteration
if s(t) > 4
disp(t) %notify the time of change
disp(v(t)) % if cumulative sum is greater than 4, display when change occurs
end
t=t+1;
end
note: v is a 1x30 vector.

Respuestas (1)

Adam Danz
Adam Danz el 31 de Jul. de 2018
Editada: Adam Danz el 31 de Jul. de 2018
If you format your code using the {} button, people can help you more easily.
The first problem I see is the line below. On the first iteration, t = 1 so v(t-1) is v(0). As the error message indicates, indices must be positive integers or logicals. Here, 0 is neither and you're requesting the 0_th value of t which causes the error.
s(t)=sum(v(t-1));
Also, there's no sense in initializing t=0 prior to your for-loop where you redefine t as 1:1:n.
  15 comentarios
Adam Danz
Adam Danz el 1 de Ag. de 2018
Folakemi, when you include code in these comments, use this button to format the code.
I can't help you without knowing exactly what error message you're getting. Please cut and paste the entire error message into the comments.
Folakemi Omotoye
Folakemi Omotoye el 1 de Ag. de 2018
it worked. Thank you so much and everyone's contributions.i really appreciate.

Iniciar sesión para comentar.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by