Question: Problem 02 Part a Given the following code: for i=1:5 for j=1:5 if i==j m(i, j)=1; else m(i, j)=0; end end end disp(m) Show below
Problem 02 Part a Given the following code: for i=1:5 for j=1:5 if i==j m(i, j)=1; else m(i, j)=0; end end end disp(m) Show below what would be displayed when the code is executed. part b funloops.m is written as follow prod = 0; for i = 1:10 prod = prod * 2*i; ii=i+1; end When the code is executed the following error is displayed to the command window: >> reducetoone(20) Undefined function or variable "ii".
Error in funloops (line 4) ii=i+1;
Correct the code above so that the code will run without error
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
