How to repeat a for loop n times
218 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
MK96
el 30 de Nov. de 2016
Comentada: Karthika AR
el 29 de Sept. de 2020
end
States
Basically it outputs an array of size (N,1) consisting of 1s and -1s.
How can I repeat this array for example 5 times using the updated values of 'States', whilst displaying the results of each loop?
1 comentario
James Tursa
el 30 de Nov. de 2016
"... using the updated values of 'States' ..."
What does this mean? I don't see 'States' used anywhere in the loop. Certainly you could wrap your current loop inside another loop, but how is 'States' supposed to be used in this loop?
Respuesta aceptada
James Tursa
el 30 de Nov. de 2016
Is this all you are trying to do?
n = number of times to repeat the loop
States = zeros(size(N,1));
for k=1:n
for ii = 1:numel(AgentZScore)
% etc
end
States
end
1 comentario
Más respuestas (2)
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!