store values from a loop in a vector
Afficher commentaires plus anciens
Hi,
I have a for loop that calculates "n" values for each file. Meaning n values are calculated for file 1 and then a different n values are calculated for file 2 etc.. I just want to form arrays that contains the ith value from each of the n value. Meaning [1a, 1b,...] then [2a, 2b,...]...[na, nb,...] How would I do that?
Réponses (1)
Azzi Abdelmalek
le 5 Jan 2014
0 votes
Just creat a matrix nxm
6 commentaires
anna
le 5 Jan 2014
Modifié(e) : Azzi Abdelmalek
le 5 Jan 2014
Azzi Abdelmalek
le 5 Jan 2014
Maybe you want to change vecC(k,:)=cosd(ratio) to
vecC(k,i)=cosd(ratio)
anna
le 5 Jan 2014
Azzi Abdelmalek
le 5 Jan 2014
But you have to read the data from each file, this does not appear in your code
anna
le 6 Jan 2014
Azzi Abdelmalek
le 6 Jan 2014
Modifié(e) : Azzi Abdelmalek
le 6 Jan 2014
for k = 1:length(xlFiles)
%read data from files
y=diff(data(:,14)');
x=diff(data(:,17)');
ratio = atand(y./x);
vecC(k,:)=cosd(ratio)
end
Catégories
En savoir plus sur Loops and Conditional Statements dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!