MathGroup Archive 2012

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

Search the Archive

Re: PlotMarker in ContourPlot

  • To: mathgroup at smc.vnet.net
  • Subject: [mg126724] Re: PlotMarker in ContourPlot
  • From: Bob Hanlon <hanlonr357 at gmail.com>
  • Date: Sat, 2 Jun 2012 05:45:16 -0400 (EDT)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • References: <201206010918.FAA11815@smc.vnet.net>

Use ContourLabels

ContourPlot[Sin[x] Sin[y],
 {x, 0, 3}, {y, 0, 3},
 Contours -> {.25, .75},
 ContourLabels -> (Text[#3, {#1, #2},
     Background -> White] &),
 ContourShading -> None]

ListContourPlot[
 Table[Sin[x] Sin[y],
  {x, 0, 3, 0.1}, {y, 0, 3, 0.1}],
 Contours -> {.25, .75},
 ContourLabels -> (Text[#3, {#1, #2},
     Background -> White] &),
 ContourShading -> None]


Bob Hanlon


On Fri, Jun 1, 2012 at 5:18 AM, janos <janostothmeister at gmail.com> wrote:
> I have the contours of two functions in a single figure and I should
> like to denote them with different markers as it is possible in
> ListPlot. Any idea?
>
> Thank you.
>
> J=E1nos
>



  • Prev by Date: Nesting NMaximize
  • Next by Date: Re: Memory Blowup Issues
  • Previous by thread: PlotMarker in ContourPlot
  • Next by thread: Re: PlotMarker in ContourPlot