MathGroup Archive 2012

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

Search the Archive

Re: How on Earth?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg128040] Re: How on Earth?
  • From: Bob Hanlon <hanlonr357 at gmail.com>
  • Date: Mon, 10 Sep 2012 04:06:40 -0400 (EDT)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • Delivered-to: l-mathgroup@wolfram.com
  • Delivered-to: mathgroup-newout@smc.vnet.net
  • Delivered-to: mathgroup-newsend@smc.vnet.net
  • References: <20120909213203.DDDE06374@smc.vnet.net>

The appearance can change significantly by just varying the color scheme.

Partition[
  DensityPlot[
     Sin[129*Abs[(x + I y)^-1]],
     {x, -2.5, 2.5}, {y, -2.5, 2.5},
     PlotLabel -> #,
     PlotPoints -> 18,
     Mesh -> False,
     Frame -> False,
     ColorFunction -> #] & /@
   {Hue, "TemperatureMap",
    "NeonColors", "GreenPinkTones",
    Blend[{Red, Yellow}, #] &,
    Blend[{Red, Blue, Yellow}, #] &},
  3] // Grid

Or by changing the PlotPoints

Partition[
  DensityPlot[
     Sin[129*Abs[(x + I y)^-1]],
     {x, -2.5, 2.5}, {y, -2.5, 2.5},
     PlotLabel -> "PlotPoints -> " <> ToString[#],
     PlotPoints -> #,
     Mesh -> False,
     Frame -> False,
     ColorFunction -> Hue] & /@
   Range[4, 12], 3] // Grid


Bob Hanlon


On Sun, Sep 9, 2012 at 5:32 PM, Chris Degnen <degnen at cwgsy.net> wrote:
> DensityPlot[Sin[129*Abs[(x + I y)^-1]], {x, -2.5, 2.5}, {y, -2.5, 2.5},
> PlotPoints -> 18, Mesh -> False, Frame -> False, ColorFunction -> Hue]
>
> c/o http://intothecontinuum.tumblr.com/page/14
>
>
>



  • References:
  • Prev by Date: Re: How to simplify certain covariance expressions using
  • Next by Date: Re: Begginer's question: Saving a function for later use
  • Previous by thread: Re: How on Earth?
  • Next by thread: 2 Assumptions for one parameter?