How do I put arrays into a for loop

1 vue (au cours des 30 derniers jours)
studentmatlaber
studentmatlaber le 31 Mar 2021
Commenté : Image Analyst le 31 Mar 2021
I have 24 arrays (such as y1, y2, y3 ...). I want to calculate the average of each of the N elements of these arrays. For example, first the average of the first N elements of the y1 array will be calculated. After calculating the average of the first N elements of 24 arrays, I want it to be saved in an array.
I wrote the following code for this, but I can only calculate for a array.
N = 5;
sub = 0;
for i = 1: 1: N
sub = sub + y1 (i);
end
mean = sub / N;
  1 commentaire
Stephen23
Stephen23 le 31 Mar 2021
"I have 24 arrays (such as y1, y2, y3 ...)."
How did you get all of those arrays into the workspace? Did you write them all out by hand?
"I want to calculate the average of each of the N elements of these arrays."
That would be a trivially easy task if you designed your data better (i.e. used one array and indexing).

Connectez-vous pour commenter.

Réponses (1)

Jan
Jan le 31 Mar 2021
Modifié(e) : Jan le 31 Mar 2021
Hiding an index in the name of a set of variables is the main problem here. This makes it hard to access the variables. Use an index instead:
Data = {y1, y2, y3, y4}; % et.c...
% Much better: Do not create y1, y2, ... at all, but the array directly
MeanData = zeros(1, numel(Data));
for k = 1:numel(Data)
MeanData{k} = mean(Data{k});
end
If there is any reason not to use the mean() function:
MeanData = zeros(1, numel(Data));
for k = 1:numel(Data)
MeanData{k} = sum(Data{k}) / numel(Data{k});
end
  1 commentaire
Image Analyst
Image Analyst le 31 Mar 2021
To get the mean of only the first N elements
for k = 1:numel(Data)
thisArray = Data{k};
MeanData(k) = mean(thisArray(1 : N));
end

Connectez-vous pour commenter.

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by