Re: Difference of numbers in the list
- To: mathgroup at smc.vnet.net
- Subject: [mg45995] Re: Difference of numbers in the list
- From: drbob at bigfoot.com (Bobby R. Treat)
- Date: Mon, 2 Feb 2004 05:20:31 -0500 (EST)
- References: <bvaor9$a3g$1@smc.vnet.net> <bvfvnk$qdk$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Both versions take plot options at my machine (Mathematica 5.0.1). Or at least, they both take the PlotStyle option you used in the second one. The points look different, though... the second version seems to have larger points, even though the specified PointSize is the same. Hmm.... Bobby mtmtk2003 at yahoo.com (mtmtk) wrote in message news:<bvfvnk$qdk$1 at smc.vnet.net>... > Thanks to everybody who helped. > > I also tried the following and it works, but it won't let me use any plot options. > > A = Flatten[Table[{((6.67/10^8)*157.85)/ > (0.225 - x)^2, (Pi^2/420^2)*x}, > {x, 0., 0.007245, 0.001}]]; > > ListPlot[Take[A, {1, 16, 2}] - > Take[A, {2, 16, 2}]] > > But if I use one Take[] I can put the PlotStyle: > > ListPlot[Take[A, {2, 16, 2}], > PlotStyle -> PointSize[0.02]]