Table[M(i j) , {i, 0, 1},{j, 0, 1} ] I am trying to iterate over i and j, and am not getting the desired result i.e. {{M{00}},{M{01}}, {M{10}, M_{11}}}
@Sander Huisman, works awesome, Thanks !
Try either:
Table[M[i,j],{i,0,1},{j,0,1}] Table[Subscript[M,Row[{i,j}]],{i,0,1},{j,0,1}]
Sorry, it remains the same
Reverse order of i and j: {j,0,1},{i,0,1}. Does this give you what you want?