Re: coordinates on a single line of output corresponding to each
- To: mathgroup at smc.vnet.net
- Subject: [mg110571] Re: coordinates on a single line of output corresponding to each
- From: Peter Pein <petsie at dordos.net>
- Date: Sat, 26 Jun 2010 03:10:13 -0400 (EDT)
- References: <i025aj$sjr$1@smc.vnet.net>
Am Fri, 25 Jun 2010 11:52:51 +0000 (UTC) schrieb Narasimham <mathma18 at hotmail.com>: > How to obtain > data= Table[{u,v,u+v, u-v, u*v/10 },{u,0,4.5,.5}, {v,0,3.5,.5}] > for 80 points on 80 separate lines ? TIA > > Narasimham > Grid[Prepend[ Flatten[0.5 Table[{u, v, u + v, u - v, u*v/10}, {u, 0, 9}, {v, 0, 7}], 1], {u, v, u + v, u - v, u*v/10}], Frame -> All] might be a starting point?