Question: Rewrite the following script in matlab without using break: for p = 7:8 for q = 3:5 for r = 1:2 fprintf(' %3.0f, %3.0f, %3.0f
Rewrite the following script in matlab without using break:
for p = 7:8 for q = 3:5 for r = 1:2 fprintf(' %3.0f, %3.0f, %3.0f ',p,q,r) end if q == 4, break; end end end
Please explain the reasoning
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
