Clear Filters
Clear Filters

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

1 view (last 30 days)
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 Comments
Walter Roberson
Walter Roberson on 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 on 15 Jun 2022
Edited: Akram RAYRI on 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{:});

Sign in to comment.

Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!