Re: How to draw the level curves ?
- To: mathgroup at smc.vnet.net
- Subject: [mg16218] Re: [mg16192] How to draw the level curves ?
- From: Markus van Almsick <m.van.almsick at cityweb.de>
- Date: Fri, 5 Mar 1999 00:40:49 -0500
- Sender: owner-wri-mathgroup at wolfram.com
Dear Seung Y Lee,
The package ImplicitPlot does the job.
<<Graphics`ImplicitPlot`
C = 1; (* or whatever *)
ImplicitPlot[y^2+Cos[x]==C,{x,-Pi,Pi}]
Or
Do[
ImplicitPlot[y^2+Cos[x]==C,{x,-Pi,Pi}],
{C,-1,1,0.1}
]
Ciao,
Markus van Almsick