MathGroup Archive 2006

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

Search the Archive

Re: multipleListPlot does not seem to accept Multiple Hue commands

  • To: mathgroup at smc.vnet.net
  • Subject: [mg64138] Re: [mg64095] multipleListPlot does not seem to accept Multiple Hue commands
  • From: "David Park" <djmp at earthlink.net>
  • Date: Thu, 2 Feb 2006 00:06:41 -0500 (EST)
  • Sender: owner-wri-mathgroup at wolfram.com

Use the PlotJoined Option.

Needs["Graphics`MultipleListPlot`"]

list1 = Table[{x, Sin[x]}, {x, 0, 7, 0.5}];
list2 = Table[{x, Sin[x + Pi/4]}, {x, 0, 7, 0.5}];
list3 = Table[{x, Sin[x + Pi/2]}, {x, 0, 7, 0.5}];

MultipleListPlot[list1, list2, list3,
    PlotJoined -> True,
    PlotStyle -> {Hue[0.6], Hue[0.1], Hue[0.2]}];

David Park
djmp at earthlink.net
http://home.earthlink.net/~djmp/ 



From: Ariel sumeruk [mailto:ariel.sumeruk at gmail.com]
To: mathgroup at smc.vnet.net


Hello
Does anybody know why this does not work?

MultipleListPlot[multiplot,PlotStyle->{Hue[0.6],Hue[0.1],Hue[0.2]}]

were multiplot is 3 lists of x,y pairs lists. All 3 grpahs appear in black
only.
Thanks




  • Prev by Date: Re: multipleListPlot does not seem to accept Multiple Hue commands
  • Next by Date: Re: multipleListPlot does not seem to accept Multiple Hue commands
  • Previous by thread: Re: multipleListPlot does not seem to accept Multiple Hue commands
  • Next by thread: Re: multipleListPlot does not seem to accept Multiple Hue commands