Basic For Loop problem

1 次查看(过去 30 天)
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

采纳的回答

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

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by