Last question is Matlab 43 Could someone figure these out Es
Last question is Matlab 4.3. Could someone figure these out. Especially the last three. Thanks.
Solution
B,For i=0 A(0) is a invalid cell number,the index i in A(i) must be positive integer
C.\"i\" is undefined parameter used
D.The execution of the loop will go on endlessly because the value of A will keep on flactuateing between 5 and 6,in one loop A will be incremented to 6 from A=A+1 and in next loop it will be resetted to 5 again.
E.For m=1,j=0.1 so A(0.1) is a invalid cell number,the index j in A(j) must be positive integer
