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
>
- References:
- PlotMarker in ContourPlot
- From: janos <janostothmeister@gmail.com>
- PlotMarker in ContourPlot