Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

Loop iteration filling an array

1 visualización (últimos 30 días)
luca
luca el 10 de Oct. de 2019
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
Hi, I have a code with the following structure
for i= 1:7
....
GGG= ....
if i==1
NEXTse= GGG
AAA = NEXTse
elseif i>1
NEXTse = GGG
AAA = [SETT,[NEXTse(1,:);SETT(2,end)+cumsum(diff([0,NEXTse(2,:)]))];
end
SETT=AAA;
end
My objective is to create an array SETT that after seven iteration collect all the value of GGG . During the first iteration I form an array AAA that collect GGG and then I insert it in SETT before pass to i=2.
Then at i=2, I attach to the previous SETT the new GGG through
AAA = [SETT,[NEXTse(1,:);SETT(2,end)+cumsum(diff([0,NEXTse(2,:)]))];
at i= 3 I attach again the GGG created in the third iteration to the previous 2.
I don't know why but the program gives me error, May someone told me why this logic is wrong?
  2 comentarios
Fabio Freschi
Fabio Freschi el 10 de Oct. de 2019
what is NEXTse?
luca
luca el 10 de Oct. de 2019
I correct it now

Respuestas (0)

Etiquetas

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by