Re: ContourStyle -> {{Dashing[0.15, 0.5]}} has no effect
- To: mathgroup at smc.vnet.net
- Subject: [mg92429] Re: ContourStyle -> {{Dashing[0.15, 0.5]}} has no effect
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Tue, 30 Sep 2008 21:51:16 -0400 (EDT)
- Organization: Uni Leipzig
- References: <gbt2ur$lh5$1@smc.vnet.net>
- Reply-to: kuska at informatik.uni-leipzig.de
Hi, Dashing[] thake a List[] of values and not a Sequence[] Try With[{dist = NormalDistribution[0, 1/2]}, ContourPlot[PDF[dist, x2] PDF[dist, x3], {x2, -2, 2}, {x3, -2, 2}, ContourShading -> False, ContourStyle -> {{Dashing[{0.05, 0.025}], Thickness[0.002], RGBColor[1, 0, 0]}}]] Regards Jens er wrote: > Hello, > > Dashing below has no effect. I must be doing something wrong...Any > suggestion would be nice. Thanks! > > > With[{dist = NormalDistribution[0, 1/2]}, > ContourPlot[PDF[dist, x2]PDF[dist, x3], {x2, -2, 2}, {x3, -2, 2}, > ContourShading -> False, > ContourStyle -> {{Dashing[0.15, 0.5], Thickness[0.002], > RGBColor[1, 0, 0]}}] > ] >