Basic For Loop problem

1 visualización (últimos 30 días)
Muhammad Ahsan
Muhammad Ahsan el 30 de En. de 2021
Comentada: Walter Roberson el 31 de En. de 2021
It is not very difficult code but I don't know why I am getting error. The value of the k should be printed like 1, 1, 1, 2, 2, 2, 3, 3, 3, ....... 1000, 1000, 1000 but it does not start from 1, 1, 1. Please help with this very simple question. If I remove a=2+4 and b=a+7 then it is okay.
for k=1:1000
a=2+4;
b=a+7
for i=1:3
k
end
end

Respuesta aceptada

Walter Roberson
Walter Roberson el 30 de En. de 2021
b=a+7
change to
b=a+7;
  2 comentarios
Muhammad Ahsan
Muhammad Ahsan el 31 de En. de 2021
Thank you. I have done this (b=a+7) to (b=a+7;). Actually the problem is that, when I run this code, I get k = 667
k = 668
k = 668
k = 668
k = 669
k = 669
k = ......
The thing is, why it is not starting from k=1, k=1, k=1, .....
Walter Roberson
Walter Roberson el 31 de En. de 2021
The rest scrolled off your screen.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by