Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

PlotMarker in ContourPlot

19 views
Skip to first unread message

janos

unread,
Jun 1, 2012, 5:19:38 AM6/1/12
to
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

Bob Hanlon

unread,
Jun 2, 2012, 5:47:47 AM6/2/12
to
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

janos

unread,
Jun 5, 2012, 4:52:35 AM6/5/12
to
Thanks, the idea is good, although I have to elaborate it a bit.
Another ide was to use Dashing and Thickness with a wide range of
parameters.

J=E1nos

0 new messages