Re: Draw a specific contour curve in dashed line
- To: mathgroup at smc.vnet.net
- Subject: [mg45440] Re: Draw a specific contour curve in dashed line
- From: bobhanlon at aol.com (Bob Hanlon)
- Date: Wed, 7 Jan 2004 17:31:04 -0500 (EST)
- References: <btg8hp$8u2$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
ContourPlot[Sin[x y], {x, -5, 5}, {y, -5, 5},
ContourShading -> False, Contours -> 5,
PlotPoints -> 75, ContourStyle -> Table[
If[n == 3, {RGBColor[1, 0, 0],
AbsoluteDashing[{5, 10}]}, Automatic], {n, 5}],
ImageSize -> 400];
Bob Hanlon
In article <btg8hp$8u2$1 at smc.vnet.net>, jl_03824 at yahoo.com (Jun Lin) wrote:
<< I'm appreciating if anyone would like to teach me how to draw a
contour curve in dashed line.