for loop

9 visualizaciones (últimos 30 días)
ARS
ARS el 11 de Jun. de 2012
Hi All,
I have a basic syntax question regarding a for loop. I am trying to change the matrix(struct) name in a loop to copy values in another array using the same loop variable as follows:
for k=1:16
tstats(k,1)=results(num2str(k)).tstat
end
I have struct matrices named from 'results1 to results16'. tstat is the field I am trying to extract from and write to tstat matrix.
I think the problem is with syntax.
Any help?
Regards,
AMD.

Respuestas (2)

Walter Roberson
Walter Roberson el 11 de Jun. de 2012
  3 comentarios
Walter Roberson
Walter Roberson el 11 de Jun. de 2012
The basic message is: Don't Do That. Do not create lists of variables that you have to loop over. Instead create a single variable whose parts you loop over. Use an array or a cell array or a structure.
Jan
Jan el 11 de Jun. de 2012
Your problem is not how to get the values from these variables, but it is caused by "I have struct matrices named from 'results1 to results16'" already. The link Walter has posted shows, that using "results{1}" to "results{16}" would be a smarter naming scheme.
It's like including the phone number to your name: It solves some problems, but in total the usage gets less efficient.

Iniciar sesión para comentar.


Kevin Holst
Kevin Holst el 11 de Jun. de 2012
You can't call or write to a variable like that in a loop, unfortunately. My suggestion would be to have a structure that contains all of your 'results##' structures. Then you could use something like this:
for k=1:16
tstats(k,1)=results.(['results' num2str(k)]).tstat
end

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by