Re: graphing inequalities
- To: mathgroup at smc.vnet.net
- Subject: [mg15830] Re: [mg15820] graphing inequalities
- From: BobHanlon at aol.com
- Date: Fri, 12 Feb 1999 18:39:50 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
In a message dated 2/8/99 4:53:24 AM, rubindl at aol.com writes: >How do I plat an inequality, such as y - x > 6 in Mathematica? I'd like >to end up with a dashed line and the region above the line shaded. > Daniel, Needs["Graphics`FilledPlot`"] FilledPlot[{x+6, 20},{x,0,12}, Frame -> True, PlotStyle -> { {AbsoluteDashing[{5,5 }]}, {Hue[.5], AbsoluteDashing[{ }]} }]; Bob Hanlon