How do I put arrays into a for loop

1 Ansicht (letzte 30 Tage)
studentmatlaber
studentmatlaber am 31 Mär. 2021
Kommentiert: Image Analyst am 31 Mär. 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 Kommentar
Stephen23
Stephen23 am 31 Mär. 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).

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Jan
Jan am 31 Mär. 2021
Bearbeitet: Jan am 31 Mär. 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 Kommentar
Image Analyst
Image Analyst am 31 Mär. 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

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by