how to run iterations?
119 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Oluyemi Jegede
el 6 de Feb. de 2014
Comentada: Oluyemi Jegede
el 6 de Feb. de 2014
Please I need help with iterations. For instance, if my Matlab script runs thus:
z=2; z=1+z
What can i do if i am looking to run this a hundred times such that the result from '1+z' is put in place of Z upon every iteration. Thanks
0 comentarios
Respuesta aceptada
Más respuestas (1)
Elvin
el 6 de Feb. de 2014
You can try something like this:
z = 0;
for i = 1:100
z = z+i;
end
2 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!