Effacer les filtres
Effacer les filtres

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

1 vue (au cours des 30 derniers jours)
Akram RAYRI
Akram RAYRI le 15 Juin 2022
Modifié(e) : Akram RAYRI le 15 Juin 2022
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 commentaires
Walter Roberson
Walter Roberson le 15 Juin 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 le 15 Juin 2022
Modifié(e) : Akram RAYRI le 15 Juin 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{:});

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements 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