Q1) This question is based on matlab..
for i=1:a*b
z(i)=i*a-b;
end
a) if b=3, a=6 how many loops would the following program do?
b) what would be the out put for z(4)?
c) what would be the size (in rows and columns) for variables z, i and b ??
d) of these 3 variables which are scalars and which are arrays?