Filter löschen
Filter löschen

How do I loop trough variables

2 Ansichten (letzte 30 Tage)
René Moerman
René Moerman am 6 Mär. 2020
Kommentiert: Guillaume am 6 Mär. 2020
How do I loop throug variables like this?
a=1;
b=2;
c=3;
for Q=[a b c]
Y=Q
end
The result i would like is:
y = 1
y = 2
y = 3
  5 Kommentare
Guillaume
Guillaume am 6 Mär. 2020
Bearbeitet: Guillaume am 6 Mär. 2020
Are the variables actually tables which would show in the variable browser as a 9x14 table, or cell arrays which would show in the variable browser as 9x14 cell?
Also, what do you want to do with your loop?
René Moerman
René Moerman am 6 Mär. 2020
They are cell arrays,
S1R1, S1R2, S1R3 ...... are my measurement positions from my experiment. They are cell arrays with in every collumn a different parameter.
I want to loop these variables so I can go through all my measurement positions and then extract the parameters i want from these positions so I can plot them.
like this:
for Q = [S1R1 S1R2 S1R3 ect. ect.]
F = Q(2:end,1);
F = cell2mat(F);
T30 = Q(2:end,2);
T30 = cell2mat(T30);
rT30 = Q(2:end,3);
rT30 = cell2mat(rT30);
T20 = Q(2:end,4);
T20 = cell2mat(T20);
semilogx(F,T30)
hold on
end

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Stephen23
Stephen23 am 6 Mär. 2020
Bearbeitet: Stephen23 am 6 Mär. 2020
"Why is that?"
Your confusion stems from several things.
  1. [] square brackets are a concatenation operator, not a "list" operator (which MATLAB does not have). So you took three 9x14 cell arrays and concatenated them horizontally to get one 9x42 cell array (not a "list" of separate arrays as you seemed to be expecting). If you want to store several arrays in a container, then use a cell array.
  2. Without realizing it, you are looping over the columns of that 9x42 cell array. The for documentation explains that if the values to be iterated over are a non-vector array, then for will iterate over its columns. I have never seen anyone rely on this "feature".
I would avoid your approach of iterating over data or over arrays: it is much more robust to iterate over indices:
C = {arr1,arr2,arr3}; % cell array
for k = 1:numel(C)
Y = C{k};
... do whatever with Y
end
  2 Kommentare
Guillaume
Guillaume am 6 Mär. 2020
"I have never seen anyone rely on this "feature"."
I use it sometimes, but it is indeed very rare that you just want to iterate over columns without knowing their indices.
Guillaume
Guillaume am 6 Mär. 2020
"would avoid your approach of iterating over data or over arrays"
Totally agree.
Even better would be to avoid creating these numbered arrays in the first place. There should only be one variable to start with, either a cell array or in this case since all the arrays are the same size, a 3D matrix.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by