Date: Dec 7, 2012 6:10 AM
Author: Bas v S
Subject: Using for loop for different matrices
Dear all, I have a problem with using a for loop for different matrices
I have a couple of matrices:
Run1=<3600x6 double>
Run2=<3600x6 double>
Run3=<3600x6 double>
Run4=<3600x6 double>
etc...
For each Run#, I want to:
F1=mean(Run1(:,1));
F2=mean(Run1(:,2));
F3=mean(Run1(:,3));
etc...
I've tried the following:
Runtot={Run1, Run2, Run3, ...}
for i=1:1:length(Runtot)
F1(i)=mean(Runtot(1,1,:))
F2(i)=mean(Runtot(1,2,:))
etc..
end
But i cannot acces Runtot(1,1,1). When I ask for it, Matlab only shows the dimensions of the matrix.
Hope anybody can help me out!
Thnx!