How do I loop trough variables

2 次查看(过去 30 天)
René Moerman
René Moerman 2020-3-6
评论: Guillaume 2020-3-6
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 个评论
Guillaume
Guillaume 2020-3-6
编辑:Guillaume 2020-3-6
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 2020-3-6
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

请先登录,再进行评论。

回答(1 个)

Stephen23
Stephen23 2020-3-6
编辑:Stephen23 2020-3-6
"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 个评论
Guillaume
Guillaume 2020-3-6
"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 2020-3-6
"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.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by