Filter löschen
Filter löschen

How to create dynamic for loop according to indices in multidementional cell

1 Ansicht (letzte 30 Tage)
Hi guys, I have a serious problem here :
hw1 = 0;
bs = 5;
ue = 8;
s = 16;
for k = 1:ue
for i = 1:ue
if i~=k
for i1 = 1:s
for i2 =1:s
.
.
.
for in = 1:s
for l = 1:bs
hw1 = hw1 + H{l,k}*Wli{l,i,i1,i2,..in};
end
sum_hw1{l,i,i1,i2,i3...,in} = hw1;
hw1 = zeros(u,1);
end
.
.
.
end
end
end
end
end
The question is the following : how should I create dynimacally a number of "bs" for loops and also how to create accordinally number of indices in "Wli" cell so that I will store each value of "hw1" in "sum_hw1". Hope that you have a solution for this issue !
  2 Kommentare
Walter Roberson
Walter Roberson am 15 Jun. 2022
https://www.mathworks.com/matlabcentral/answers/?search_origin=ans_leaf&term=tag%3Aodometer has source in a couple of responses
Akram RAYRI
Akram RAYRI am 15 Jun. 2022
Bearbeitet: Akram RAYRI am 15 Jun. 2022
Thank's Walter for your feedback. As far as I understood, this chunk of code is my solution !
According to the shared link.
Var = cell(n, 1);
[Var{1:n}] = ndgrid(1:k);
y = f(Var{:});

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements 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