Borrar filtros
Borrar filtros

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

1 visualización (últimos 30 días)
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 comentarios
Walter Roberson
Walter Roberson el 15 de Jun. de 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 el 15 de Jun. de 2022
Editada: Akram RAYRI el 15 de Jun. de 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{:});

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by