I want just data without comma and brackets. Even TableForm is not working for me.
For example, the general pattern of my table is
t = Table[Table[{m, n}, {m, 1, 10}], {n, 1, 9}]
which gives output in the for {x1,y1},{x2,y2}..... . If I use TableForm it will show output as:
1 2 3 ... 10
1...........
...............
2...Numbers......
..............
9............9
But I want output of just two columns for the values of m and n ({m,n}) like
m1 m2
m3 m4
.....
How to do that? Or suggest me how convert the data in the form {{x1,y1},{x2,y2}} in just two columns?


Grid[]? – J. M.♦ Jul 23 '12 at 12:04Flatten[Outer[Composition[Reverse, List], Range[5], Range[6]], 1] // Grid– J. M.♦ Jul 23 '12 at 12:35Gridafter merging the top level of the array (with eitherFalttenorJoin), and he posted first. I am glad that you liked my answer but I would prefer that you accept his. This is by no means required and you are always at liberty to Accept whatever answer you choose; it is simply my request. – Mr.Wizard♦ Jul 24 '12 at 8:32