for loop

9 views (last 30 days)
ARS
ARS on 11 Jun 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.

Answers (2)

Walter Roberson
Walter Roberson on 11 Jun 2012
  3 Comments
Walter Roberson
Walter Roberson on 11 Jun 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 on 11 Jun 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.

Sign in to comment.


Kevin Holst
Kevin Holst on 11 Jun 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

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!