Clear Filters
Clear Filters

1) Given the following MATLAB for loop: for a= 1:6 b=a*3; end What is the value of b upon completion of the loop?

4 views (last 30 days)
1) Given the following MATLAB for loop:
for a= 1:6
b=a*3;
end
What is the value of b upon completion of the loop?
2) Given the following MATLAB for loop:
for a= 1:6
b=a*3;
end
Once the loop has completed, what is the value of a?
  1 Comment
James Tursa
James Tursa on 26 Mar 2015
Edited: James Tursa on 26 Mar 2015
Seriously, it would be less effort to simply copy and paste that loop into MATLAB than to create this Question. Just do it and see what the result is.

Sign in to comment.

Answers (1)

James Tursa
James Tursa on 26 Mar 2015
- Highlight all three lines of the for loop
- Press Ctrl-C
- Click on the MATLAB command window (the one with the >> showing)
- Press Ctrl-V
- Examine the values of a and b

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!