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
>
>
>
- Follow-Ups:
- 2 Assumptions for one parameter?
- From: Andreas Talmon l'Armée@smc.vnet.net
- 2 Assumptions for one parameter?
- References:
- How on Earth?
- From: "Chris Degnen" <degnen@cwgsy.net>
- How on Earth?