Re: Combining ContourPlot and Plot
- To: mathgroup at smc.vnet.net
- Subject: [mg64592] Re: [mg64566] Combining ContourPlot and Plot
- From: "David Park" <djmp at earthlink.net>
- Date: Thu, 23 Feb 2006 00:34:55 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
James,
Needs["Graphics`Graphics`"]
DisplayTogether[ContourPlot[x^2 + y^2, {x, -1, 1}, {y, -1, 1}],
Plot[x, {x, -1, 1}]]
The ContourPlot has to come first.
David Park
djmp at earthlink.net
http://home.earthlink.net/~djmp/
From: dkjk at bigpond.net.au [mailto:dkjk at bigpond.net.au]
To: mathgroup at smc.vnet.net
Hi group,
The title says it all really. I want something like
Show[Plot[x,{x,-1,1}],ContourPlot[x^2+y^2,{x,-1,1},{y,-1,1}]]
I've looked through the usenet archive to no avail.
Thanks in advance.
James