Borrar filtros
Borrar filtros

Save values in a for loop

1 visualización (últimos 30 días)
Eric
Eric el 19 de Sept. de 2014
Comentada: Eric el 22 de Sept. de 2014
Hi all,
I trying to create a script that is able to save the values from each run in a 'for loop' for an EEG study. It works very well without the loop (stores values correct in 'powervalue'). The problem is that it's only saving the last value in the 'allpowervalues':
powervalue = zeros(length(freq),1);
allpowervalues = zeros(length(freq),12);
for ii=1:length(freq)
% Script calculating power values for EEG
end
allpowervalues(:,ii)= powervalue;
I hope someone can help.
Christian

Respuestas (2)

the cyclist
the cyclist el 19 de Sept. de 2014
Don't you want the line
allpowervalues(:,ii)= powervalue;
inside the for loop?

Eric
Eric el 19 de Sept. de 2014
Thank you for the response. I already did that but it still doesn't work.
  4 comentarios
the cyclist
the cyclist el 19 de Sept. de 2014
This code fills in the entire array for me:
freq = rand(4,1);
powervalue = zeros(length(freq),1);
allpowervalues = zeros(length(freq),12);
for ii=1:12
powervalue = rand(4,1);
allpowervalues(:,ii)= powervalue;
end
I did change your for loop to go from 1:12 instead of 1:length(freq). Maybe that was part of the problem?
Eric
Eric el 22 de Sept. de 2014
Thank you very much for your answer. I finally works.

Iniciar sesión para comentar.

Categorías

Más información sobre Frequently-used Algorithms 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!

Translated by