Re: Dotted line plot
- To: mathgroup at smc.vnet.net
- Subject: [mg53964] Re: [mg53911] Dotted line plot
- From: Clifford Martin <camartin at snet.net>
- Date: Sat, 5 Feb 2005 03:15:56 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
Try this. In[26]:= y[x_] := 2*x + 3 In[28]:= elist = Range[-10, 10, 1] In[30]:= tim = y /@ elist In[45]:= ListPlot[tim, PlotStyle -> {Thickness[0.007], Dashing[{0.02}]}, PlotJoined -> True] The manual is pretty clear about this. Remember that the input in Dashing has to be a list. Cliff --- DJ Craig <spit at djtricities.com> wrote: > How can I plot this linear equation with a dotted > line for the line: > y = 2x + 3 > >