MathGroup Archive 2008

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: ContourStyle -> {{Dashing[0.15, 0.5]}} has no effect

  • To: mathgroup at smc.vnet.net
  • Subject: [mg92401] Re: ContourStyle -> {{Dashing[0.15, 0.5]}} has no effect
  • From: "David Park" <djmpark at comcast.net>
  • Date: Tue, 30 Sep 2008 21:46:08 -0400 (EDT)
  • References: <gbt2ur$lh5$1@smc.vnet.net>

You need parentheses in the Dashing statement. Maybe something like this:

With[{dist = NormalDistribution[0, 1/2]},
 ContourPlot[PDF[dist, x2] PDF[dist, x3], {x2, -2, 2}, {x3, -2, 2},
  ContourShading -> False,
  ContourStyle -> {{AbsoluteDashing[{5}], Thickness[0.002],
     RGBColor[1, 0, 0]}}]]

-- 
David Park
djmpark at comcast.net
http://home.comcast.net/~djmpark/


"er" <erwann.rogard at gmail.com> wrote in message 
news:gbt2ur$lh5$1 at smc.vnet.net...
> 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]}}]
>  ]
> 



  • Prev by Date: Re: help with new symbols (or pointers)
  • Next by Date: Re: ContourStyle -> {{Dashing[0.15, 0.5]}} has no effect
  • Previous by thread: Re: ContourStyle -> {{Dashing[0.15, 0.5]}} has no effect
  • Next by thread: Re: ContourStyle -> {{Dashing[0.15, 0.5]}} has no effect