Basic For Loop problem

1 visualizzazione (ultimi 30 giorni)
Muhammad Ahsan
Muhammad Ahsan il 30 Gen 2021
Commentato: Walter Roberson il 31 Gen 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

Risposta accettata

Walter Roberson
Walter Roberson il 30 Gen 2021
b=a+7
change to
b=a+7;
  2 Commenti
Muhammad Ahsan
Muhammad Ahsan il 31 Gen 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 il 31 Gen 2021
The rest scrolled off your screen.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by