I want to fill region between different contours, e.g. ContourPlot[{c1 = f1, c2 = f2}, ...] a la the filling options for Plot like Filling -> {1->{2}}. Is it an easier way than superimposing two contour plots then manually excluding regions?
Tell me more
×
Mathematica Stack Exchange is a question and answer site for
users of Mathematica. It's 100% free, no registration required.
|
|
|||
|
I think some times it will not be so clear for implicit functions to say something analogous to Here is an example:
|
|||||||||||||
|
|
It seems you would rather use Let's define e.g.
then
or one could use
while
or extracting only regions between curves
|
||||






Filling -> {1->{2}}. eg.ContourPlot[{Cos[x] + Cos[y] == 1/2, Sin[x] + Cos[y] == 1/2}, {x, 0, 12}, {y, 0, 12}]. btw maybe it will beRegionPlotwhat you are looking for. – Silvia Aug 5 '12 at 13:37