Re: Dotted line plot
- To: mathgroup at smc.vnet.net
- Subject: [mg53950] Re: [mg53911] Dotted line plot
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Sat, 5 Feb 2005 03:15:03 -0500 (EST)
- Reply-to: hanlonr at cox.net
- Sender: owner-wri-mathgroup at wolfram.com
Plot[2x+3,{x,-2,2},
PlotStyle->{
AbsoluteThickness[2],
AbsoluteDashing[{1,8}]}];
ListPlot[Table[{x,2x+3},{x,-2,2,1/10}]];
Bob Hanlon
>
> From: "DJ Craig" <spit at djtricities.com>
To: mathgroup at smc.vnet.net
> Subject: [mg53950] [mg53911] Dotted line plot
>
> How can I plot this linear equation with a dotted line for the line:
> y = 2x + 3
>
>