MathGroup Archive 2001

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

Search the Archive

Re: ListContourPlot Color

  • To: mathgroup at smc.vnet.net
  • Subject: [mg31480] Re: [mg31474] ListContourPlot Color
  • From: BobHanlon at aol.com
  • Date: Thu, 8 Nov 2001 04:54:14 -0500 (EST)
  • Sender: owner-wri-mathgroup at wolfram.com

In a message dated 2001/11/7 5:46:57 AM, Moranresearch at aol.com writes:

>Is the a way to assign specific colors to the intervals between individual
>
>contours?
>

ListContourPlot[
    Table[x^2+y^2+Random[Real,{-0.2,0.2}],
      {x,-2,2,0.1},{y,-2,2,0.1}],
    ContourStyle->RGBColor[0,0,1]];

ListContourPlot[
    Table[x^2+y^2+Random[Real,{-0.2,0.2}],
      {x,-2,2,0.1},{y,-2,2,0.1}],
    ContourStyle->{{RGBColor[0,0,1]},{RGBColor[1,0,0]}}];

ListContourPlot[
    Table[x^2+y^2+Random[Real,{-0.2,0.2}],{x,-2,2,0.1},{y,-2,2,0.1}],
    ContourStyle->Join[
        Table[{RGBColor[0,0,1]},{2}],
        {RGBColor[1,0,0]}]];


Bob Hanlon
Chantilly, VA  USA


  • Prev by Date: Re: Limit question
  • Next by Date: Re: LogLinearPlot: plot point distance
  • Previous by thread: Re: ListContourPlot Color
  • Next by thread: Re: ListContourPlot Color