Basic For Loop problem
    1 view (last 30 days)
  
       Show older comments
    
    Muhammad Ahsan
 on 30 Jan 2021
  
    
    
    
    
    Commented: Walter Roberson
      
      
 on 31 Jan 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
0 Comments
Accepted Answer
More Answers (0)
See Also
Categories
				Find more on Loops and Conditional Statements in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!